Skip to main content

LowerBounded

Trait LowerBounded 

Source
pub trait LowerBounded {
    const MIN: Self;
}
Expand description

Numbers which have lower bounds

Required Associated Constants§

Source

const MIN: Self

Returns the smallest finite number this type can represent

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl LowerBounded for f32

Source§

const MIN: Self = f32::MIN

Source§

impl LowerBounded for f64

Source§

const MIN: Self = f64::MIN

Source§

impl LowerBounded for i8

Source§

const MIN: Self = i8::MIN

Source§

impl LowerBounded for i16

Source§

const MIN: Self = i16::MIN

Source§

impl LowerBounded for i32

Source§

const MIN: Self = i32::MIN

Source§

impl LowerBounded for i64

Source§

const MIN: Self = i64::MIN

Source§

impl LowerBounded for i128

Source§

const MIN: Self = i128::MIN

Source§

impl LowerBounded for isize

Source§

const MIN: Self = isize::MIN

Source§

impl LowerBounded for u8

Source§

const MIN: Self = u8::MIN

Source§

impl LowerBounded for u16

Source§

const MIN: Self = u16::MIN

Source§

impl LowerBounded for u32

Source§

const MIN: Self = u32::MIN

Source§

impl LowerBounded for u64

Source§

const MIN: Self = u64::MIN

Source§

impl LowerBounded for u128

Source§

const MIN: Self = u128::MIN

Source§

impl LowerBounded for usize

Source§

const MIN: Self = usize::MIN

Implementors§