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