Trait IntoCondition

Source
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§

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.

Implementors§

Source§

impl<T> IntoCondition for T
where T: Into<Condition>,