Trait SSSD

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

SSSD is a trait that represents a type that is Send, Sync, Debug, and 'static.

This trait is used as a bound for types that need to be sent between threads, shared references between threads, have the ability to be formatted using the Debug formatter, and have a static lifetime.

Implementors§

Source§

impl<S> SSSD for S
where S: Send + Sync + Debug + 'static,

This is an implementation of the SSSD trait for all types S that satisfy the bounds of being Send, Sync, Debug, and 'static.