pub trait IntoValue64 {
// Required methods
fn into_u64(self) -> u64;
fn into_i64(self) -> i64;
fn into_f64(self) -> f64;
}Expand description
A trait for converting to different types
pub trait IntoValue64 {
// Required methods
fn into_u64(self) -> u64;
fn into_i64(self) -> i64;
fn into_f64(self) -> f64;
}A trait for converting to different types