wiwi::num

Trait IntoI32

Source
pub trait IntoI32
where Self: Sealed,
{ // Required method fn into_i32(self) -> i32; }
Expand description

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

Required Methods§

Source

fn into_i32(self) -> i32

Convert into a i32 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 IntoI32 for bool

Source§

fn into_i32(self) -> i32

Source§

impl IntoI32 for i8

Source§

fn into_i32(self) -> i32

Source§

impl IntoI32 for i16

Source§

fn into_i32(self) -> i32

Source§

impl IntoI32 for i32

Source§

fn into_i32(self) -> i32

Source§

impl IntoI32 for u8

Source§

fn into_i32(self) -> i32

Source§

impl IntoI32 for u16

Source§

fn into_i32(self) -> i32

Implementors§