pub type VdrResult<T> = Result<T, VdrError>;
Library result type
enum VdrResult<T> { Ok(T), Err(VdrError), }
Contains the success value
Contains the error value