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