pub struct LdapUrl {
pub scheme: LdapScheme,
pub host: String,
pub port: Option<u16>,
pub base_dn: Option<String>,
pub attributes: Vec<String>,
pub scope: Option<SearchScope>,
pub filter: Option<String>,
}Fields§
§scheme: LdapScheme§host: String§port: Option<u16>§base_dn: Option<String>§attributes: Vec<String>§scope: Option<SearchScope>§filter: Option<String>Implementations§
Trait Implementations§
impl Eq for LdapUrl
impl StructuralPartialEq for LdapUrl
Auto Trait Implementations§
impl Freeze for LdapUrl
impl RefUnwindSafe for LdapUrl
impl Send for LdapUrl
impl Sync for LdapUrl
impl Unpin for LdapUrl
impl UnsafeUnpin for LdapUrl
impl UnwindSafe for LdapUrl
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