pub trait Parsable {
// Required method
fn from_tls_bytes(bytes: &[u8]) -> MlsSpecResult<Self>
where Self: Sized;
}Expand description
Trait that exposes TLS deserialization
Required Methods§
fn from_tls_bytes(bytes: &[u8]) -> MlsSpecResult<Self>where
Self: Sized,
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".