pub enum LoadFileError {
IO(Error),
Parse(ParserError),
}Expand description
errors that occurs during loading of a file.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LoadFileError
impl !RefUnwindSafe for LoadFileError
impl Send for LoadFileError
impl Sync for LoadFileError
impl Unpin for LoadFileError
impl !UnwindSafe for LoadFileError
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