pub trait AsDer<T> {
// Required method
fn as_der(&self) -> Result<T, Unspecified>;
}
Expand description
Trait for types that can be serialized into a DER format.
pub trait AsDer<T> {
// Required method
fn as_der(&self) -> Result<T, Unspecified>;
}
Trait for types that can be serialized into a DER format.