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.