Trait CondSend

Source
pub trait CondSend: Send { }
Expand description

A conditionally compiled trait indirection for Send bounds. This target makes it require Send.

Implementors§

Source§

impl<S> CondSend for S
where S: Send,