pub struct Implement<'a> {
pub span: Span,
pub implemented: Implemented<'a>,
pub implementation: Implementation<'a>,
}Expand description
A means of implementing a core wasm imported function with an adapter function.
Fields§
§span: SpanWhere this directive was defined
implemented: Implemented<'a>What’s being implemented
implementation: Implementation<'a>How it’s being implemented
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Implement<'a>
impl<'a> RefUnwindSafe for Implement<'a>
impl<'a> Send for Implement<'a>
impl<'a> Sync for Implement<'a>
impl<'a> Unpin for Implement<'a>
impl<'a> UnwindSafe for Implement<'a>
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