Skip to main content

SendOutsideWasm

Trait SendOutsideWasm 

Source
pub trait SendOutsideWasm: Send { }
Available on non-target_family=wasm only.
Expand description

Alias for Send on non-wasm, empty trait (implemented by everything) on wasm.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T> SendOutsideWasm for T
where T: Send,