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 = 3f32

Source§

impl Three for f64

Source§

const THREE: Self = 3f64

Source§

impl Three for i8

Source§

const THREE: Self = 3i8

Source§

impl Three for i16

Source§

const THREE: Self = 3i16

Source§

impl Three for i32

Source§

const THREE: Self = 3i32

Source§

impl Three for i64

Source§

const THREE: Self = 3i64

Source§

impl Three for i128

Source§

const THREE: Self = 3i128

Source§

impl Three for isize

Source§

const THREE: Self = 3isize

Source§

impl Three for u8

Source§

const THREE: Self = 3u8

Source§

impl Three for u16

Source§

const THREE: Self = 3u16

Source§

impl Three for u32

Source§

const THREE: Self = 3u32

Source§

impl Three for u64

Source§

const THREE: Self = 3u64

Source§

impl Three for u128

Source§

const THREE: Self = 3u128

Source§

impl Three for usize

Source§

const THREE: Self = 3usize

Implementors§