pub type SerializeResult<T> = Result<T, SerializeError>;Available on crate feature
mtls only.Expand description
Holds the result of BER/DER encoding functions
Aliased Type§
pub enum SerializeResult<T> {
Ok(T),
Err(SerializeError),
}