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