pub trait SearchEntryExt {
// Required method
fn attribute_results(
&self,
attribute_name: &str,
) -> LdapAttributeResultValues;
}Expand description
adds a method to ldap3::SearchEntry to extract the LdapResultValue for a given attribute
Required Methods§
Sourcefn attribute_results(&self, attribute_name: &str) -> LdapAttributeResultValues
fn attribute_results(&self, attribute_name: &str) -> LdapAttributeResultValues
extracts the results for a given attribute
Implementations on Foreign Types§
Source§impl SearchEntryExt for SearchEntry
Available on crate feature ldap3 only.
impl SearchEntryExt for SearchEntry
Available on crate feature
ldap3 only.