wiwi::num

Trait IntoI64

Source
pub trait IntoI64
where Self: Sealed,
{ // Required method fn into_i64(self) -> i64; }
Expand description

Trait for number types that can be converted into i64, losslessly

Required Methods§

Source

fn into_i64(self) -> i64

Convert into a i64 value

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 IntoI64 for bool

Source§

fn into_i64(self) -> i64

Source§

impl IntoI64 for i8

Source§

fn into_i64(self) -> i64

Source§

impl IntoI64 for i16

Source§

fn into_i64(self) -> i64

Source§

impl IntoI64 for i32

Source§

fn into_i64(self) -> i64

Source§

impl IntoI64 for i64

Source§

fn into_i64(self) -> i64

Source§

impl IntoI64 for isize

Source§

fn into_i64(self) -> i64

Source§

impl IntoI64 for u8

Source§

fn into_i64(self) -> i64

Source§

impl IntoI64 for u16

Source§

fn into_i64(self) -> i64

Source§

impl IntoI64 for u32

Source§

fn into_i64(self) -> i64

Implementors§