Trait SixtyFive

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

Returns the constant value for the number sixty_five

Required Methods§

Source

fn sixty_five() -> 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 SixtyFive for f32

Source§

fn sixty_five() -> Self

Source§

impl SixtyFive for f64

Source§

fn sixty_five() -> Self

Source§

impl SixtyFive for i8

Source§

fn sixty_five() -> Self

Source§

impl SixtyFive for i16

Source§

fn sixty_five() -> Self

Source§

impl SixtyFive for i32

Source§

fn sixty_five() -> Self

Source§

impl SixtyFive for i64

Source§

fn sixty_five() -> Self

Source§

impl SixtyFive for i128

Source§

fn sixty_five() -> Self

Source§

impl SixtyFive for isize

Source§

fn sixty_five() -> Self

Source§

impl SixtyFive for u8

Source§

fn sixty_five() -> Self

Source§

impl SixtyFive for u16

Source§

fn sixty_five() -> Self

Source§

impl SixtyFive for u32

Source§

fn sixty_five() -> Self

Source§

impl SixtyFive for u64

Source§

fn sixty_five() -> Self

Source§

impl SixtyFive for u128

Source§

fn sixty_five() -> Self

Source§

impl SixtyFive for usize

Source§

fn sixty_five() -> Self

Implementors§