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