pub enum CborCodecError {
Io(Error),
Cbor(Error),
}
Expand description
JSON Codec error enumeration
Variants§
Trait Implementations§
source§impl Debug for CborCodecError
impl Debug for CborCodecError
source§impl Display for CborCodecError
impl Display for CborCodecError
source§impl Error for CborCodecError
impl Error for CborCodecError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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 CborCodecError
impl From<Error> for CborCodecError
source§fn from(e: IoError) -> CborCodecError
fn from(e: IoError) -> CborCodecError
Converts to this type from the input type.
source§impl From<Error> for CborCodecError
impl From<Error> for CborCodecError
source§fn from(e: CborError) -> CborCodecError
fn from(e: CborError) -> CborCodecError
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for CborCodecError
impl Send for CborCodecError
impl Sync for CborCodecError
impl Unpin for CborCodecError
impl !UnwindSafe for CborCodecError
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