pub enum SaveError {
IoError(Error),
Filesize,
CorruptSave,
NeverSaved,
OutOfBounds,
InvalidData,
NotFound,
}Expand description
Error type used by this crate.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SaveError
impl !RefUnwindSafe for SaveError
impl Send for SaveError
impl Sync for SaveError
impl Unpin for SaveError
impl !UnwindSafe for SaveError
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