Skip to main content

MaybeSend

Trait MaybeSend 

Source
pub trait MaybeSend: Send { }
Available on crate feature _api and non-target_family=wasm only.
Expand description

Trait to support WASM and native targets.

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§

Source§

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