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