pub type HsmResult<T> = Result<T, HsmError>;
Result type for HSM operations.
pub enum HsmResult<T> { Ok(T), Err(HsmError), }
Contains the success value
Contains the error value