pub trait EncodedCert {
// Required methods
fn cert_type(&self) -> CertType;
fn encoded(&self) -> &[u8] ⓘ;
}Expand description
A certificate with an encoded representation.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".