pub unsafe trait ValidCheck<P> {
    const ALWAYS_VALID: bool;
    fn is_valid(_input: P) -> bool { ... }
}

Associated Constants

Provided methods

Implementations on Foreign Types

Implementors