pub type TpmResult<T> = Result<T, TpmError>;
pub enum TpmResult<T> { Ok(T), Err(TpmError), }
Contains the success value
Contains the error value