[][src]Struct ldap_sys::ldap_sync_t

#[repr(C)]pub struct ldap_sync_t {
    pub ls_base: *mut c_char,
    pub ls_scope: c_int,
    pub ls_filter: *mut c_char,
    pub ls_attrs: *mut *mut c_char,
    pub ls_timelimit: c_int,
    pub ls_sizelimit: c_int,
    pub ls_timeout: c_int,
    pub ls_search_entry: ldap_sync_search_entry_f,
    pub ls_search_reference: ldap_sync_search_reference_f,
    pub ls_intermediate: ldap_sync_intermediate_f,
    pub ls_search_result: ldap_sync_search_result_f,
    pub ls_private: *mut c_void,
    pub ls_ld: *mut LDAP,
    pub ls_msgid: c_int,
    pub ls_reloadHint: c_int,
    pub ls_cookie: berval,
    pub ls_refreshPhase: ldap_sync_refresh_t,
}

Fields

ls_base: *mut c_charls_scope: c_intls_filter: *mut c_charls_attrs: *mut *mut c_charls_timelimit: c_intls_sizelimit: c_intls_timeout: c_intls_search_entry: ldap_sync_search_entry_fls_search_reference: ldap_sync_search_reference_fls_intermediate: ldap_sync_intermediate_fls_search_result: ldap_sync_search_result_fls_private: *mut c_voidls_ld: *mut LDAPls_msgid: c_intls_reloadHint: c_intls_cookie: bervalls_refreshPhase: ldap_sync_refresh_t

Trait Implementations

impl Clone for ldap_sync_t[src]

impl Copy for ldap_sync_t[src]

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