pub enum DataAnchorEncodingError {
Postcard(Error),
Bincode(Error),
Json(Error),
UnknownEncodingType,
EncodingTypeMismatch(EncodingType, EncodingType),
NoDataToDecode,
}Variants§
Postcard(Error)
Bincode(Error)
Json(Error)
UnknownEncodingType
EncodingTypeMismatch(EncodingType, EncodingType)
NoDataToDecode
Trait Implementations§
Source§impl Debug for DataAnchorEncodingError
impl Debug for DataAnchorEncodingError
Source§impl Display for DataAnchorEncodingError
impl Display for DataAnchorEncodingError
Source§impl Error for DataAnchorEncodingError
impl Error for DataAnchorEncodingError
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 DataAnchorEncodingError
impl From<Error> for DataAnchorEncodingError
Auto Trait Implementations§
impl Freeze for DataAnchorEncodingError
impl !RefUnwindSafe for DataAnchorEncodingError
impl Send for DataAnchorEncodingError
impl Sync for DataAnchorEncodingError
impl Unpin for DataAnchorEncodingError
impl !UnwindSafe for DataAnchorEncodingError
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