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