Trait NotLike

Source
pub trait NotLike: FilterPriv {
    // Required method
    fn not_like<T: Display, V: Into<OneOrMany<T>>>(value: V) -> Filter;
}

Required Methods§

Source

fn not_like<T: Display, V: Into<OneOrMany<T>>>(value: V) -> Filter

Creates NotLike filter.

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§