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