pub enum LoadError {
IoError(Error),
Error(Error),
}
Expand description
A LoadError is returned when during loading of a .config file, errors where found. Typically, this is non-destructive, but an end-user should be warned through the frontend that something went wrong during loading of the .config file.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LoadError
impl !RefUnwindSafe for LoadError
impl Send for LoadError
impl Sync for LoadError
impl Unpin for LoadError
impl !UnwindSafe for LoadError
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