pub trait HasValidationStatus {
    type Data;
    fn validation_status(&self) -> Option<ValidationStatus>;
fn data(&self) -> &Self::Data; }
Expand description

Data that requires a validation status.

Associated Types

The type of the inner data

Required methods

Get the status of a some data. None means this data has not been validated yet.

The data which has the validation status

Implementors