pub struct WasmCode;Expand description
A blob schema for WebAssembly bytecode.
This schema is intended for sandboxed helper modules such as value formatters
(see metadata::value_formatter).
Trait Implementations§
Source§impl BlobSchema for WasmCode
impl BlobSchema for WasmCode
Source§impl ConstDescribe for WasmCode
impl ConstDescribe for WasmCode
Auto Trait Implementations§
impl Freeze for WasmCode
impl RefUnwindSafe for WasmCode
impl Send for WasmCode
impl Sync for WasmCode
impl Unpin for WasmCode
impl UnsafeUnpin for WasmCode
impl UnwindSafe for WasmCode
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
Source§impl<T> Describe for Twhere
T: ConstDescribe,
impl<T> Describe for Twhere
T: ConstDescribe,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more