Trait WhereAppend

Source
pub trait WhereAppend<T> {
    // Required methods
    fn and(self, cond: T) -> Self;
    fn or(self, cond: T) -> Self;
}

Required Methods§

Source

fn and(self, cond: T) -> Self

Source

fn or(self, cond: T) -> Self

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§