[][src]Struct ldap3::result::CompareResult

pub struct CompareResult(pub LdapResult);

Wrapper for the result of a Compare operation.

Compare uniquely has two non-zero return codes to indicate the outcome of a successful comparison, while other return codes indicate errors, as usual (except 10 for referral). The equal() method optimizes for the expected case of ignoring referrals; non_error() can be used when that's not possible.

Implementations

impl CompareResult[src]

pub fn equal(self) -> Result<bool>[src]

If the result code is 5 (compareFalse) or 6 (compareTrue), return the corresponding boolean value wrapped in Ok(), otherwise wrap the LdapResult part in an LdapError.

pub fn non_error(self) -> Result<LdapResult>[src]

If the result code is 5 (compareFalse), 6 (compareTrue), or 10 (referral), return the inner LdapResult, otherwise rewrap LdapResult in an LdapError.

Trait Implementations

impl Clone for CompareResult[src]

impl Debug for CompareResult[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.