pub struct LdapEntry {
pub dn: String,
pub attrs: BTreeMap<String, BTreeSet<String>>,
}Fields§
§dn: String§attrs: BTreeMap<String, BTreeSet<String>>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for LdapEntry
impl<'de> Deserialize<'de> for LdapEntry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<LdapSearchResultEntry> for LdapEntry
impl From<LdapSearchResultEntry> for LdapEntry
Source§fn from(ent: LdapSearchResultEntry) -> Self
fn from(ent: LdapSearchResultEntry) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LdapEntry
impl RefUnwindSafe for LdapEntry
impl Send for LdapEntry
impl Sync for LdapEntry
impl Unpin for LdapEntry
impl UnwindSafe for LdapEntry
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more