Skip to main content

Three

Trait Three 

Source
pub trait Three {
    const THREE: Self;
}

Required Associated Constants§

Source

const THREE: 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 Three for f32

Source§

const THREE: Self = 3_f32

Source§

impl Three for f64

Source§

const THREE: Self = 3_f64

Source§

impl Three for i8

Source§

const THREE: Self = 3_i8

Source§

impl Three for i16

Source§

const THREE: Self = 3_i16

Source§

impl Three for i32

Source§

const THREE: Self = 3_i32

Source§

impl Three for i64

Source§

const THREE: Self = 3_i64

Source§

impl Three for i128

Source§

const THREE: Self = 3_i128

Source§

impl Three for isize

Source§

const THREE: Self = 3_isize

Source§

impl Three for u8

Source§

const THREE: Self = 3_u8

Source§

impl Three for u16

Source§

const THREE: Self = 3_u16

Source§

impl Three for u32

Source§

const THREE: Self = 3_u32

Source§

impl Three for u64

Source§

const THREE: Self = 3_u64

Source§

impl Three for u128

Source§

const THREE: Self = 3_u128

Source§

impl Three for usize

Source§

const THREE: Self = 3_usize

Implementors§