pub trait HasValidationStatus {
    type Data;

    fn validation_status(&self) -> Option<ValidationStatus>;
    fn data(&self) -> &Self::Data;
}
Expand description

Data that requires a validation status.

Required 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