Trait NinetyNine

Source
pub trait NinetyNine: Sized {
    // Required method
    fn ninety_nine() -> Self;
}
Expand description

Returns the constant value for the number ninety_nine

Required Methods§

Source

fn ninety_nine() -> 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 NinetyNine for f32

Source§

fn ninety_nine() -> Self

Source§

impl NinetyNine for f64

Source§

fn ninety_nine() -> Self

Source§

impl NinetyNine for i8

Source§

fn ninety_nine() -> Self

Source§

impl NinetyNine for i16

Source§

fn ninety_nine() -> Self

Source§

impl NinetyNine for i32

Source§

fn ninety_nine() -> Self

Source§

impl NinetyNine for i64

Source§

fn ninety_nine() -> Self

Source§

impl NinetyNine for i128

Source§

fn ninety_nine() -> Self

Source§

impl NinetyNine for isize

Source§

fn ninety_nine() -> Self

Source§

impl NinetyNine for u8

Source§

fn ninety_nine() -> Self

Source§

impl NinetyNine for u16

Source§

fn ninety_nine() -> Self

Source§

impl NinetyNine for u32

Source§

fn ninety_nine() -> Self

Source§

impl NinetyNine for u64

Source§

fn ninety_nine() -> Self

Source§

impl NinetyNine for u128

Source§

fn ninety_nine() -> Self

Source§

impl NinetyNine for usize

Source§

fn ninety_nine() -> Self

Implementors§