pub trait ToBoolean {
// Required method
fn to_boolean(&self) -> bool;
}Expand description
Trait for casting: Defines how to convert when cast to a boolean.
pub trait ToBoolean {
// Required method
fn to_boolean(&self) -> bool;
}Trait for casting: Defines how to convert when cast to a boolean.