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