pub trait InherentNull: CheckNull {
    const NULL: Self;
}
Expand description

Defines an example null value inherent to Self.

Required Associated Constants§

source

const NULL: Self

Proof Definition

NULL is a constant such that Self::is_null(Self::NULL) is true.

Implementations on Foreign Types§

source§

impl InherentNull for f32

source§

const NULL: Self = NaNf32

source§

impl InherentNull for f64

source§

const NULL: Self = NaNf64

Implementors§