pub type Result<T> = Result<T, Error>;
Result type with ssh-key’s Error as the error type.
ssh-key
Error
enum Result<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value