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
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
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.