pub type DResult<D, T> = Result<T, <D as Dataset>::Error>;
Type alias for results produced by a dataset.
enum DResult<D, T> { Ok(T), Err(<D as Dataset>::Error), }
Contains the success value
Contains the error value