pub trait Bounded {
    const MIN: Self;
    const MAX: Self;
}
Expand description

Represents MIN and MAX values.

Required Associated Constants

Represents MIN.

Represents MAX.

Implementations on Foreign Types

Implementors