Enum ldap_parser::filter::Filter[][src]

pub enum Filter<'a> {
    And(Vec<Filter<'a>>),
    Or(Vec<Filter<'a>>),
    Not(Box<Filter<'a>>),
    EqualityMatch(AttributeValueAssertion<'a>),
    Substrings(SubstringFilter<'a>),
    GreaterOrEqual(AttributeValueAssertion<'a>),
    LessOrEqual(AttributeValueAssertion<'a>),
    Present(LdapString<'a>),
    ApproxMatch(AttributeValueAssertion<'a>),
    ExtensibleMatch(MatchingRuleAssertion<'a>),
}

Variants

And(Vec<Filter<'a>>)

Tuple Fields of And

0: Vec<Filter<'a>>
Or(Vec<Filter<'a>>)

Tuple Fields of Or

0: Vec<Filter<'a>>
Not(Box<Filter<'a>>)

Tuple Fields of Not

0: Box<Filter<'a>>
EqualityMatch(AttributeValueAssertion<'a>)

Tuple Fields of EqualityMatch

0: AttributeValueAssertion<'a>
Substrings(SubstringFilter<'a>)

Tuple Fields of Substrings

0: SubstringFilter<'a>
GreaterOrEqual(AttributeValueAssertion<'a>)

Tuple Fields of GreaterOrEqual

0: AttributeValueAssertion<'a>
LessOrEqual(AttributeValueAssertion<'a>)

Tuple Fields of LessOrEqual

0: AttributeValueAssertion<'a>
Present(LdapString<'a>)

Tuple Fields of Present

0: LdapString<'a>
ApproxMatch(AttributeValueAssertion<'a>)

Tuple Fields of ApproxMatch

0: AttributeValueAssertion<'a>
ExtensibleMatch(MatchingRuleAssertion<'a>)

Tuple Fields of ExtensibleMatch

0: MatchingRuleAssertion<'a>

Trait Implementations

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.