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