Trait AutoTraits

Source
pub trait AutoTraits:
    Send
    + Sync
    + 'static { }
Expand description

A trait that extends Send and Sync if not compiling for the Web.

Implementors§

Source§

impl<_INNER> AutoTraits for _INNER
where _INNER: Send + Sync + 'static,