pub enum AbiError {
TypeMismatch {
expected: String,
got: String,
},
InvalidEncoding(String),
BufferTooSmall {
need: usize,
have: usize,
},
InvalidTag(u8),
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AbiError
impl RefUnwindSafe for AbiError
impl Send for AbiError
impl Sync for AbiError
impl Unpin for AbiError
impl UnsafeUnpin for AbiError
impl UnwindSafe for AbiError
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