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