pub trait SyncAlias { }Expand description
Trait alias for Sync
If the rayon feature is set, it acts as an alias for Sync and is implemented for all types
which implement Sync. If rayon is not set, it will be an “empty” trait implemented for all
types.