pub enum InfoParseError {
TooShort,
BufferTooSmall,
InvalidField,
}Expand description
Errors from Info encode/decode.
Variants§
Trait Implementations§
Source§impl Clone for InfoParseError
impl Clone for InfoParseError
Source§fn clone(&self) -> InfoParseError
fn clone(&self) -> InfoParseError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for InfoParseError
impl Debug for InfoParseError
Source§impl Format for InfoParseError
impl Format for InfoParseError
Source§impl From<InfoParseError> for DeviceMessageParseError
impl From<InfoParseError> for DeviceMessageParseError
Source§fn from(e: InfoParseError) -> Self
fn from(e: InfoParseError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for InfoParseError
impl PartialEq for InfoParseError
impl Copy for InfoParseError
impl Eq for InfoParseError
impl StructuralPartialEq for InfoParseError
Auto Trait Implementations§
impl Freeze for InfoParseError
impl RefUnwindSafe for InfoParseError
impl Send for InfoParseError
impl Sync for InfoParseError
impl Unpin for InfoParseError
impl UnsafeUnpin for InfoParseError
impl UnwindSafe for InfoParseError
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