[][src]Enum ledb::Cond

pub enum Cond {
    Not(Box<Filter>),
    And(Vec<Filter>),
    Or(Vec<Filter>),
}

Condition operator of filter

Variants

Not(Box<Filter>)

Not (sub-condition is false)

And(Vec<Filter>)

And (all of sub-conditions is true)

Or(Vec<Filter>)

Or (any of sub-conditions is true)

Trait Implementations

impl Clone for Cond[src]

impl Debug for Cond[src]

impl<'de> Deserialize<'de> for Cond[src]

impl Eq for Cond[src]

impl PartialEq<Cond> for Cond[src]

impl Serialize for Cond[src]

impl StructuralEq for Cond[src]

impl StructuralPartialEq for Cond[src]

Auto Trait Implementations

impl RefUnwindSafe for Cond

impl Send for Cond

impl Sync for Cond

impl Unpin for Cond

impl UnwindSafe for Cond

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<'a, T> DefaultFeatures<'a> for T where
    T: 'a + Clone + Send + Sync
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<'a, T> NonSyncFeatures<'a> for T where
    T: 'a + Clone
[src]

impl<T> SafeBorrow<T> for T where
    T: ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.