pub struct InconsistentEdn(/* private fields */);Expand description
Error type for conversions from EDN to CBOR
The conversion is generally fallible; see crate level documentation.
Trait Implementations§
Source§impl Clone for InconsistentEdn
impl Clone for InconsistentEdn
Source§fn clone(&self) -> InconsistentEdn
fn clone(&self) -> InconsistentEdn
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 InconsistentEdn
impl Debug for InconsistentEdn
Source§impl Display for InconsistentEdn
impl Display for InconsistentEdn
Source§impl Error for InconsistentEdn
impl Error for InconsistentEdn
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<TryFromIntError> for InconsistentEdn
impl From<TryFromIntError> for InconsistentEdn
Source§fn from(_: TryFromIntError) -> Self
fn from(_: TryFromIntError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InconsistentEdn
impl RefUnwindSafe for InconsistentEdn
impl Send for InconsistentEdn
impl Sync for InconsistentEdn
impl Unpin for InconsistentEdn
impl UnsafeUnpin for InconsistentEdn
impl UnwindSafe for InconsistentEdn
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