pub struct InvalidHeader;Expand description
The CBOR header (first byte) is invalid or malformed.
This can happen if the header byte represents a different type than expected, or if the header byte is malformed (e.g., uses a reserved value from the CBOR specification).
Trait Implementations§
Source§impl Clone for InvalidHeader
impl Clone for InvalidHeader
Source§fn clone(&self) -> InvalidHeader
fn clone(&self) -> InvalidHeader
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 InvalidHeader
impl Debug for InvalidHeader
Source§impl Default for InvalidHeader
impl Default for InvalidHeader
Source§fn default() -> InvalidHeader
fn default() -> InvalidHeader
Returns the “default value” for a type. Read more
Source§impl Display for InvalidHeader
impl Display for InvalidHeader
Source§impl Error for InvalidHeader
impl Error for InvalidHeader
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<InvalidHeader> for Error
impl From<InvalidHeader> for Error
Source§fn from(e: InvalidHeader) -> Self
fn from(e: InvalidHeader) -> Self
Converts to this type from the input type.
Source§impl<E> From<InvalidHeader> for Error<E>
impl<E> From<InvalidHeader> for Error<E>
Source§fn from(_: InvalidHeader) -> Self
fn from(_: InvalidHeader) -> Self
Converts to this type from the input type.
Source§impl<E> From<InvalidHeader> for Error<E>
impl<E> From<InvalidHeader> for Error<E>
Source§fn from(_: InvalidHeader) -> Self
fn from(_: InvalidHeader) -> Self
Converts to this type from the input type.
Source§impl From<InvalidHeader> for Error
impl From<InvalidHeader> for Error
Source§fn from(_: InvalidHeader) -> Self
fn from(_: InvalidHeader) -> Self
Converts to this type from the input type.
Source§impl From<InvalidHeader> for Error
impl From<InvalidHeader> for Error
Source§fn from(_: InvalidHeader) -> Self
fn from(_: InvalidHeader) -> Self
Converts to this type from the input type.
Source§impl Hash for InvalidHeader
impl Hash for InvalidHeader
Source§impl PartialEq for InvalidHeader
impl PartialEq for InvalidHeader
impl Copy for InvalidHeader
impl Eq for InvalidHeader
impl StructuralPartialEq for InvalidHeader
Auto Trait Implementations§
impl Freeze for InvalidHeader
impl RefUnwindSafe for InvalidHeader
impl Send for InvalidHeader
impl Sync for InvalidHeader
impl Unpin for InvalidHeader
impl UnwindSafe for InvalidHeader
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