Sendable

Trait Sendable 

Source
pub trait Sendable { }
Expand description

A trait that is implemented for all types that implement Send.

Send is only required when the multithread feature is enabled.

Implementors§

Source§

impl<T> Sendable for T

Available on non-crate feature multithread only.