pub enum FileProcessError<'file_process> {
InvalidPath(InvalidPathError<'file_process>),
SaveError(TextFileOutputError<'file_process>),
LoadError(Box<dyn Error>),
}
Variants§
InvalidPath(InvalidPathError<'file_process>)
SaveError(TextFileOutputError<'file_process>)
LoadError(Box<dyn Error>)
Trait Implementations§
Source§impl<'file_process> Debug for FileProcessError<'file_process>
impl<'file_process> Debug for FileProcessError<'file_process>
Auto Trait Implementations§
impl<'file_process> Freeze for FileProcessError<'file_process>
impl<'file_process> !RefUnwindSafe for FileProcessError<'file_process>
impl<'file_process> !Send for FileProcessError<'file_process>
impl<'file_process> !Sync for FileProcessError<'file_process>
impl<'file_process> Unpin for FileProcessError<'file_process>
impl<'file_process> !UnwindSafe for FileProcessError<'file_process>
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