pub enum ItemIdDataError {
InsufficentData(usize),
UInt12Error(UInt12Error),
}
Variants§
InsufficentData(usize)
UInt12Error(UInt12Error)
Trait Implementations§
Source§impl Debug for ItemIdDataError
impl Debug for ItemIdDataError
Source§impl Display for ItemIdDataError
impl Display for ItemIdDataError
Source§impl Error for ItemIdDataError
impl Error for ItemIdDataError
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<ItemIdDataError> for PageDataError
impl From<ItemIdDataError> for PageDataError
Source§fn from(source: ItemIdDataError) -> Self
fn from(source: ItemIdDataError) -> Self
Converts to this type from the input type.
Source§impl From<UInt12Error> for ItemIdDataError
impl From<UInt12Error> for ItemIdDataError
Source§fn from(source: UInt12Error) -> Self
fn from(source: UInt12Error) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ItemIdDataError
impl RefUnwindSafe for ItemIdDataError
impl Send for ItemIdDataError
impl Sync for ItemIdDataError
impl Unpin for ItemIdDataError
impl UnwindSafe for ItemIdDataError
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