pub unsafe trait ValidCheck<P> {
    const ALWAYS_VALID: bool = false;

    fn is_valid(_input: P) -> bool { ... }
}

Provided Associated Constants

Provided Methods

Implementations on Foreign Types

Implementors