pub enum FromRawDatatypeError {
StructTag(StructTagError),
Bcs(Box<dyn StdError + Send + Sync + 'static>),
}Available on crate feature
bcs only.Expand description
Error for parse_move_datatype.
Variants§
Trait Implementations§
Source§impl Debug for FromRawDatatypeError
impl Debug for FromRawDatatypeError
Source§impl Display for FromRawDatatypeError
impl Display for FromRawDatatypeError
Source§impl Error for FromRawDatatypeError
impl Error for FromRawDatatypeError
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<StructTagError> for FromRawDatatypeError
impl From<StructTagError> for FromRawDatatypeError
Source§fn from(source: StructTagError) -> Self
fn from(source: StructTagError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for FromRawDatatypeError
impl !RefUnwindSafe for FromRawDatatypeError
impl Send for FromRawDatatypeError
impl Sync for FromRawDatatypeError
impl Unpin for FromRawDatatypeError
impl !UnwindSafe for FromRawDatatypeError
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