pub trait IntoCheck: DeserializeOwned {
    type Check;

    // Required method
    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.

Required Associated Types§

source

type Check

The check parsed by this configuration.

Required Methods§

source

fn into_check(self) -> Self::Check

Create a new instance of the check from the configuration.

Implementors§