pub enum ZoneMapPersistError {
Io(Error),
BadMagic {
found: u32,
},
BadVersion {
found: u32,
},
Truncated,
InvalidUtf8(FromUtf8Error),
}Variants§
Trait Implementations§
Source§impl Debug for ZoneMapPersistError
impl Debug for ZoneMapPersistError
Source§impl Display for ZoneMapPersistError
impl Display for ZoneMapPersistError
Source§impl Error for ZoneMapPersistError
impl Error for ZoneMapPersistError
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()
Source§impl From<Error> for ZoneMapPersistError
impl From<Error> for ZoneMapPersistError
Source§impl From<FromUtf8Error> for ZoneMapPersistError
impl From<FromUtf8Error> for ZoneMapPersistError
Source§fn from(e: FromUtf8Error) -> Self
fn from(e: FromUtf8Error) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for ZoneMapPersistError
impl !UnwindSafe for ZoneMapPersistError
impl Freeze for ZoneMapPersistError
impl Send for ZoneMapPersistError
impl Sync for ZoneMapPersistError
impl Unpin for ZoneMapPersistError
impl UnsafeUnpin for ZoneMapPersistError
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