pub type Result<T> = Result<T, IronError>;
A specialized Result type for Iron Protocol operations
pub enum Result<T> { Ok(T), Err(IronError), }
Contains the success value
Contains the error value