[][src]Trait git_checks_config::IntoCheck

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

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

type Check

The check parsed by this configuration.

Loading content...

Required methods

fn into_check(self) -> Self::Check

Create a new instance of the check from the configuration.

Loading content...

Implementors

Loading content...