pub enum LoadStorageError {
InvalidName,
NotFound,
Open(Error),
Read(Error),
Parse(Error),
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LoadStorageError
impl !RefUnwindSafe for LoadStorageError
impl Send for LoadStorageError
impl Sync for LoadStorageError
impl Unpin for LoadStorageError
impl !UnwindSafe for LoadStorageError
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