1//! Utility types. 2 3/// A type that represents a shortened form of `Send + Sync + 'static`. 4pub trait TripleS = Send + Sync + 'static;