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