Max

Trait Max 

Source
pub trait Max {
    // Required method
    fn max() -> Self;
}

Required Methods§

Source

fn max() -> Self

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 Max for i8

Source§

fn max() -> Self

Source§

impl Max for i16

Source§

fn max() -> Self

Source§

impl Max for i32

Source§

fn max() -> Self

Source§

impl Max for i64

Source§

fn max() -> Self

Source§

impl Max for i128

Source§

fn max() -> Self

Source§

impl Max for isize

Source§

fn max() -> Self

Source§

impl Max for u8

Source§

fn max() -> Self

Source§

impl Max for u16

Source§

fn max() -> Self

Source§

impl Max for u32

Source§

fn max() -> Self

Source§

impl Max for u64

Source§

fn max() -> Self

Source§

impl Max for u128

Source§

fn max() -> Self

Source§

impl Max for usize

Source§

fn max() -> Self

Implementors§