pub trait IntoCheck: DeserializeOwned {
    type Check;
    fn into_check(self) -> Self::Check;
}
Expand description

Trait for a deserialization structure of a check.

This trait should be implemented for any structure which can be deserialized and construct a check.

Associated Types

The check parsed by this configuration.

Required methods

Create a new instance of the check from the configuration.

Implementors