pub enum FileSystemDatabaseError {
CreateFile(Error),
ToJSON(Error),
WriteToFile(Error),
ReadFile(Error),
ParseJSON(Error),
DeleteFile(Error),
}Variants§
CreateFile(Error)
ToJSON(Error)
WriteToFile(Error)
ReadFile(Error)
ParseJSON(Error)
DeleteFile(Error)
Trait Implementations§
Source§impl Debug for FileSystemDatabaseError
impl Debug for FileSystemDatabaseError
Source§impl Display for FileSystemDatabaseError
impl Display for FileSystemDatabaseError
Source§impl Error for FileSystemDatabaseError
impl Error for FileSystemDatabaseError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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()
Auto Trait Implementations§
impl Freeze for FileSystemDatabaseError
impl !RefUnwindSafe for FileSystemDatabaseError
impl Send for FileSystemDatabaseError
impl Sync for FileSystemDatabaseError
impl Unpin for FileSystemDatabaseError
impl !UnwindSafe for FileSystemDatabaseError
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