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