pub enum FlagError {
BadType(ValueType),
BadString(String),
BadPath(String),
MappingNeedsFile,
FileMissing(PathBuf),
OsError(PathBuf),
MissingKey,
}Variants§
BadType(ValueType)
BadString(String)
BadPath(String)
MappingNeedsFile
FileMissing(PathBuf)
OsError(PathBuf)
MissingKey
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FlagError
impl RefUnwindSafe for FlagError
impl Send for FlagError
impl Sync for FlagError
impl Unpin for FlagError
impl UnwindSafe for FlagError
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