pub type Result<T> = Result<T, Error>;
Re-export core types. Convenience Result type used throughout Shrew.
pub enum Result<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value