Skip to main content

LocalAwareSend

Trait LocalAwareSend 

Source
pub trait LocalAwareSend: Send { }
Expand description

A conditional trait that implements Send if the target is not wasm.

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§

Source§

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

Available on non-target_family=wasm only.