Skip to main content

Min

Trait Min 

Source
pub trait Min {
    // Required method
    fn min_value() -> Self;
}

Required Methods§

Source

fn min_value() -> Self

Returns the minimum representable value for this type.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl Min for bool

Source§

fn min_value() -> Self

Source§

impl Min for i8

Source§

fn min_value() -> Self

Source§

impl Min for i16

Source§

fn min_value() -> Self

Source§

impl Min for i32

Source§

fn min_value() -> Self

Source§

impl Min for i64

Source§

fn min_value() -> Self

Source§

impl Min for u8

Source§

fn min_value() -> Self

Source§

impl Min for u16

Source§

fn min_value() -> Self

Source§

impl Min for u32

Source§

fn min_value() -> Self

Source§

impl Min for u64

Source§

fn min_value() -> Self

Source§

impl Min for DateTime<Utc>

Source§

fn min_value() -> Self

Implementors§