pub trait InvalidSentinel: Copy + Eq {
    fn invalid_sentinel() -> Self;

    fn is_invalid_sentinel(self) -> bool { ... }
}
Expand description

A type with an “invalid” sentinel value.

Required methods

The invalid sentinel value.

Provided methods

Is this the invalid sentinel?

Implementations on Foreign Types

Implementors