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