Trait Thirteen

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

Returns the constant value for the number thirteen

Required Methods§

Source

fn thirteen() -> 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 Thirteen for f32

Source§

fn thirteen() -> Self

Source§

impl Thirteen for f64

Source§

fn thirteen() -> Self

Source§

impl Thirteen for i8

Source§

fn thirteen() -> Self

Source§

impl Thirteen for i16

Source§

fn thirteen() -> Self

Source§

impl Thirteen for i32

Source§

fn thirteen() -> Self

Source§

impl Thirteen for i64

Source§

fn thirteen() -> Self

Source§

impl Thirteen for i128

Source§

fn thirteen() -> Self

Source§

impl Thirteen for isize

Source§

fn thirteen() -> Self

Source§

impl Thirteen for u8

Source§

fn thirteen() -> Self

Source§

impl Thirteen for u16

Source§

fn thirteen() -> Self

Source§

impl Thirteen for u32

Source§

fn thirteen() -> Self

Source§

impl Thirteen for u64

Source§

fn thirteen() -> Self

Source§

impl Thirteen for u128

Source§

fn thirteen() -> Self

Source§

impl Thirteen for usize

Source§

fn thirteen() -> Self

Implementors§