pub enum ConfigSchemaError {
ValidationError(String),
}Expand description
ConfigSchemaError
Variants§
Trait Implementations§
Source§impl Debug for ConfigSchemaError
impl Debug for ConfigSchemaError
Source§impl Display for ConfigSchemaError
impl Display for ConfigSchemaError
Source§impl Error for ConfigSchemaError
impl Error for ConfigSchemaError
1.30.0 · 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<ConfigSchemaError> for ConfigError
impl From<ConfigSchemaError> for ConfigError
Source§fn from(source: ConfigSchemaError) -> Self
fn from(source: ConfigSchemaError) -> Self
Converts to this type from the input type.
Source§impl From<ConfigSchemaError> for Error
impl From<ConfigSchemaError> for Error
Source§fn from(err: ConfigSchemaError) -> Self
fn from(err: ConfigSchemaError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ConfigSchemaError
impl RefUnwindSafe for ConfigSchemaError
impl Send for ConfigSchemaError
impl Sync for ConfigSchemaError
impl Unpin for ConfigSchemaError
impl UnwindSafe for ConfigSchemaError
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