pub type Result<T> = Result<T, SlipError>;
Convenient result alias used throughout the crate.
pub enum Result<T> { Ok(T), Err(SlipError), }
Contains the success value
Contains the error value