pub struct WasmBridge {
pub config: WasmBridgeConfig,
pub memory: WasmMemory,
pub functions: Vec<WasmFunction>,
pub call_count: u64,
}Fields§
§config: WasmBridgeConfig§memory: WasmMemory§functions: Vec<WasmFunction>§call_count: u64Trait Implementations§
Source§impl Clone for WasmBridge
impl Clone for WasmBridge
Source§fn clone(&self) -> WasmBridge
fn clone(&self) -> WasmBridge
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for WasmBridge
impl RefUnwindSafe for WasmBridge
impl Send for WasmBridge
impl Sync for WasmBridge
impl Unpin for WasmBridge
impl UnsafeUnpin for WasmBridge
impl UnwindSafe for WasmBridge
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