pub trait IntoCondition: Into<Condition> {
// Provided method
fn into_condition(self) -> Condition { ... }
}
Expand description
A helper trait.
You shouldn’t implement this manually.
Provided Methods§
fn into_condition(self) -> Condition
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.