[][src]Struct ldap3::SearchOptions

#[non_exhaustive]pub struct SearchOptions {
    pub deref: DerefAliases,
    pub typesonly: bool,
    pub timelimit: i32,
    pub sizelimit: i32,
}

Additional parameters for the Search operation.

Fields (Non-exhaustive)

Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
deref: DerefAliasestypesonly: booltimelimit: i32sizelimit: i32

Implementations

impl SearchOptions[src]

pub fn new() -> Self[src]

Create an instance of the structure with default values.

pub fn deref(self, d: DerefAliases) -> Self[src]

Set the method for dereferencing aliases.

pub fn typesonly(self, typesonly: bool) -> Self[src]

Set the indicator of returning just attribute names (true) vs. names and values (false).

pub fn timelimit(self, timelimit: i32) -> Self[src]

Set the time limit, in seconds, for the whole search operation.

This is a server-side limit of the elapsed time for performing the operation, not a network timeout for retrieving result entries or the result of the whole operation.

pub fn sizelimit(self, sizelimit: i32) -> Self[src]

Set the size limit, in entries, for the whole search operation.

Trait Implementations

impl Clone for SearchOptions[src]

impl Debug for SearchOptions[src]

impl Default for SearchOptions[src]

Auto Trait Implementations

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<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.