Skip to main content

EntrySource

Trait EntrySource 

Source
pub trait EntrySource {
    type Iter: Iterator<Item = Result<LdapSearchEntry, Box<dyn Error>>>;

    // Required method
    fn into_entry_iter(self) -> Self::Iter;
}
Expand description

Used to iterate over LDAP search entries.

Required Associated Types§

Required Methods§

Source

fn into_entry_iter(self) -> Self::Iter

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl EntrySource for Vec<LdapSearchEntry>

Implementors§