pub trait ConnectionState: Sealed {
type Data: Debug + Clone;
}Expand description
Trait to track the state of a Connection at compile time.
Required Associated Types§
Sourcetype Data: Debug + Clone
type Data: Debug + Clone
State-specific data stored in the Connection.