pub trait IntoValue32 {
// Required methods
fn into_u32(self) -> u32;
fn into_i32(self) -> i32;
fn into_f32(self) -> f32;
}Expand description
A trait for converting to different types
pub trait IntoValue32 {
// Required methods
fn into_u32(self) -> u32;
fn into_i32(self) -> i32;
fn into_f32(self) -> f32;
}A trait for converting to different types