Trait num_traits::bounds::Bounded[][src]

pub trait Bounded {
    fn min_value() -> Self;
fn max_value() -> Self; }
[]

Numbers which have upper and lower bounds

Required Methods

[]

returns the smallest finite number this type can represent

[]

returns the largest finite number this type can represent

Implementations on Foreign Types

impl<T: Bounded> Bounded for Wrapping<T>
[src]

[]

Implementors