pub enum ConfigError {
NonDirExpr,
NonTableExpr,
NonTableConfig {
lib: Symbol,
},
UnsupportedDirKey {
key: Expr,
},
InvalidLibId {
id: String,
},
InvalidPathSegment {
segment: String,
},
MissingField {
key: String,
},
TypeMismatch {
key: String,
expected: &'static str,
},
}Expand description
Error reported by config table, view, and path helpers.
Variants§
NonDirExpr
A Dir expression was not an Expr::Map.
NonTableExpr
A table expression was not an Expr::Map.
NonTableConfig
A Dir entry for lib did not contain a table value.
UnsupportedDirKey
A Dir key could not be interpreted as a library id.
InvalidLibId
A library id or id segment is not safe for config use.
InvalidPathSegment
A library config path segment was rejected.
MissingField
A required field was absent from a config table.
TypeMismatch
A config field had a different shape than the caller requested.
Trait Implementations§
Source§impl Clone for ConfigError
impl Clone for ConfigError
Source§fn clone(&self) -> ConfigError
fn clone(&self) -> ConfigError
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 ConfigError
impl Debug for ConfigError
Source§impl Display for ConfigError
impl Display for ConfigError
impl Eq for ConfigError
Source§impl Error for ConfigError
impl Error for ConfigError
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<SymbolError> for ConfigError
impl From<SymbolError> for ConfigError
Source§fn from(error: SymbolError) -> Self
fn from(error: SymbolError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ConfigError
impl PartialEq for ConfigError
impl StructuralPartialEq for ConfigError
Auto Trait Implementations§
impl Freeze for ConfigError
impl RefUnwindSafe for ConfigError
impl Send for ConfigError
impl Sync for ConfigError
impl Unpin for ConfigError
impl UnsafeUnpin for ConfigError
impl UnwindSafe for ConfigError
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