Enum bulwark_config::ResolutionError
source · pub enum ResolutionError {
Missing(String),
CircularPreset(String),
}
Expand description
This error will be returned if attempting to resolve references fails.
Variants§
Trait Implementations§
source§impl Debug for ResolutionError
impl Debug for ResolutionError
source§impl Display for ResolutionError
impl Display for ResolutionError
source§impl Error for ResolutionError
impl Error for ResolutionError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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<ResolutionError> for ConfigFileError
impl From<ResolutionError> for ConfigFileError
source§fn from(source: ResolutionError) -> Self
fn from(source: ResolutionError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for ResolutionError
impl Send for ResolutionError
impl Sync for ResolutionError
impl Unpin for ResolutionError
impl UnwindSafe for ResolutionError
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