pub enum GuestError {
Codec(CodecError),
UnsupportedTarget,
}Expand description
Errors that can occur when decoding inputs on the guest.
Variants§
Codec(CodecError)
UnsupportedTarget
Trait Implementations§
Source§impl Debug for GuestError
impl Debug for GuestError
Source§impl Display for GuestError
impl Display for GuestError
Source§impl From<CodecError> for GuestError
impl From<CodecError> for GuestError
Source§fn from(err: CodecError) -> GuestError
fn from(err: CodecError) -> GuestError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GuestError
impl RefUnwindSafe for GuestError
impl Send for GuestError
impl Sync for GuestError
impl Unpin for GuestError
impl UnwindSafe for GuestError
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