Expand description
§Filter
This module contains the implementation of the LDAP filter.
Structs§
- AndFilter
- The
AndFilterstruct represents an AND filter. - Contains
Filter - The
ContainsFilterstruct represents a CONTAINS filter. This generates a ldap filter that checks if the value is contained in the attribute. - EqFilter
- The
EqFilterstruct represents an equality filter. - Like
Filter - The
LikeFilterstruct represents a LIKE filter. This generates a ldap filter with a wildcard on the left or on the right of the value. - NotFilter
- The
NotFilterstruct represents a NOT filter. This filter represents the negation of another filter. This is equal to LDAP!operator. - OrFilter
- The
OrFilterstruct represents an OR filter.
Enums§
- Wildard
On - The
WildardOnenum represents the wildcard position.
Traits§
- Filter
- The
Filtertrait is implemented by all the filters.