pub enum TemplateError {
Toml(Error),
EmptyName,
EmptyField {
name: String,
field: &'static str,
},
MissingModeValue {
name: String,
field: &'static str,
},
MissingModeAttributeProgramValue {
name: String,
},
}Expand description
Why DcsTemplate::validate or parse_catalog rejected a template.
Variants§
Toml(Error)
The catalog’s TOML could not be parsed at all (malformed syntax, wrong shape).
EmptyName
name was empty or all whitespace.
EmptyField
A required suffix field was empty.
MissingModeValue
controller_mode_suffix was set but the manual or auto value for it was empty.
MissingModeAttributeProgramValue
mode_attribute_suffix was set but mode_attribute_program_value was None.
Trait Implementations§
Source§impl Clone for TemplateError
impl Clone for TemplateError
Source§fn clone(&self) -> TemplateError
fn clone(&self) -> TemplateError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TemplateError
impl Debug for TemplateError
Source§impl Display for TemplateError
impl Display for TemplateError
Source§impl Error for TemplateError
impl Error for TemplateError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl From<Error> for TemplateError
impl From<Error> for TemplateError
Source§impl PartialEq for TemplateError
impl PartialEq for TemplateError
Source§fn eq(&self, other: &TemplateError) -> bool
fn eq(&self, other: &TemplateError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TemplateError
Auto Trait Implementations§
impl Freeze for TemplateError
impl RefUnwindSafe for TemplateError
impl Send for TemplateError
impl Sync for TemplateError
impl Unpin for TemplateError
impl UnsafeUnpin for TemplateError
impl UnwindSafe for TemplateError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more