pub trait WrapsMut<T>: Wraps<T> {
    fn inner_mut(&mut self) -> &mut T;
}
Expand description

Most WASM types are wrapping a Rust type one-on-one. This trait helps to enforce a convention so that WASM types can easily peek under the hood of other such wrapped WASM types.

See also Wraps<T>

Required Methods

Converts an exclusive reference to a WASM type to an exclusive reference to the underlying Rust type.

Implementors