pub enum HostAssert {
Encode(IDLArgs, Vec<Type>, bool, Vec<u8>),
NotEncode(IDLArgs, Vec<Type>),
Decode(Vec<u8>, Vec<Type>, bool, IDLArgs),
NotDecode(Vec<u8>, Vec<Type>),
}Variants§
Encode(IDLArgs, Vec<Type>, bool, Vec<u8>)
NotEncode(IDLArgs, Vec<Type>)
Decode(Vec<u8>, Vec<Type>, bool, IDLArgs)
NotDecode(Vec<u8>, Vec<Type>)
Auto Trait Implementations§
impl Freeze for HostAssert
impl RefUnwindSafe for HostAssert
impl !Send for HostAssert
impl !Sync for HostAssert
impl Unpin for HostAssert
impl UnwindSafe for HostAssert
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