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