pub enum AttributeDecodeError {
ReadFailure(Error),
InvalidString(FromUtf8Error),
InsufficientData(),
InvalidValue(u128),
UnrecognizedAttributeType {
attr_type: u16,
},
}
Expand description
Attribute encoding errors.
Variants§
ReadFailure(Error)
Error reading field value.
InvalidString(FromUtf8Error)
Failed to convert byte sequence into a UTF-8 string.
InsufficientData()
Not enough data was provided to decode the value.
InvalidValue(u128)
Unrecognized field value was provided.
UnrecognizedAttributeType
Unrecognized attribute type value was provided.
Trait Implementations§
Source§impl Debug for AttributeDecodeError
impl Debug for AttributeDecodeError
Source§impl Display for AttributeDecodeError
impl Display for AttributeDecodeError
Source§impl Error for AttributeDecodeError
impl Error for AttributeDecodeError
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 AttributeDecodeError
impl From<Error> for AttributeDecodeError
Source§impl From<FromUtf8Error> for AttributeDecodeError
impl From<FromUtf8Error> for AttributeDecodeError
Source§fn from(source: FromUtf8Error) -> Self
fn from(source: FromUtf8Error) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AttributeDecodeError
impl !RefUnwindSafe for AttributeDecodeError
impl Send for AttributeDecodeError
impl Sync for AttributeDecodeError
impl Unpin for AttributeDecodeError
impl !UnwindSafe for AttributeDecodeError
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