Trait Thirty

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

Returns the constant value for the number thirty

Required Methods§

Source

fn thirty() -> 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 Thirty for f32

Source§

fn thirty() -> Self

Source§

impl Thirty for f64

Source§

fn thirty() -> Self

Source§

impl Thirty for i8

Source§

fn thirty() -> Self

Source§

impl Thirty for i16

Source§

fn thirty() -> Self

Source§

impl Thirty for i32

Source§

fn thirty() -> Self

Source§

impl Thirty for i64

Source§

fn thirty() -> Self

Source§

impl Thirty for i128

Source§

fn thirty() -> Self

Source§

impl Thirty for isize

Source§

fn thirty() -> Self

Source§

impl Thirty for u8

Source§

fn thirty() -> Self

Source§

impl Thirty for u16

Source§

fn thirty() -> Self

Source§

impl Thirty for u32

Source§

fn thirty() -> Self

Source§

impl Thirty for u64

Source§

fn thirty() -> Self

Source§

impl Thirty for u128

Source§

fn thirty() -> Self

Source§

impl Thirty for usize

Source§

fn thirty() -> Self

Implementors§

Source§

impl<T: Thirty + Zero> Thirty for Complex<T>