pub enum MapCtxError {
NoVersion,
NoTypeTable,
}
Expand description
Errors that can occur when accessing a MapCtx
.
Variants§
NoVersion
The version field is needed, but unavailable.
NoTypeTable
The type table is needed, but unavailable.
Trait Implementations§
Source§impl Debug for MapCtxError
impl Debug for MapCtxError
Source§impl Display for MapCtxError
impl Display for MapCtxError
Source§impl Error for MapCtxError
impl Error for MapCtxError
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<MapCtxError> for MapError
impl From<MapCtxError> for MapError
Source§fn from(source: MapCtxError) -> Self
fn from(source: MapCtxError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MapCtxError
impl RefUnwindSafe for MapCtxError
impl Send for MapCtxError
impl Sync for MapCtxError
impl Unpin for MapCtxError
impl UnwindSafe for MapCtxError
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