pub trait MlsConfig:
Clone
+ Send
+ Sync
+ Sealed { }
Expand description
Helper trait to allow consuming crates to easily write a client type as Client<impl MlsConfig>
It is not meant to be implemented by consuming crates. T: MlsConfig
implies T: ClientConfig
.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.