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

Implementations on Foreign Types§

Source§

impl EntrySource for Vec<LdapSearchEntry>

Implementors§