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