pub trait ToInt {
// Required method
fn to_int(&self) -> i32;
}
Expand description
Trait for a value that can be converted to an integer
pub trait ToInt {
// Required method
fn to_int(&self) -> i32;
}
Trait for a value that can be converted to an integer