pub trait MlsConfig:
Send
+ Sync
+ Clone
+ Sealed { }
Available on crate feature
external_client
only.Expand description
Helper trait to allow consuming crates to easily write an external client type as
ExternalClient<impl MlsConfig>
It is not meant to be implemented by consuming crates. T: MlsConfig
implies
T: ExternalClientConfig
.
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.