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