pub struct LdapAuthConfig {
pub url: String,
pub base_dn: String,
pub bind_dn: String,
pub bind_password: String,
pub user_filter: String,
}Expand description
LDAP authentication configuration
Fields§
§url: String§base_dn: String§bind_dn: String§bind_password: String§user_filter: StringTrait Implementations§
Source§impl Clone for LdapAuthConfig
impl Clone for LdapAuthConfig
Source§fn clone(&self) -> LdapAuthConfig
fn clone(&self) -> LdapAuthConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LdapAuthConfig
impl Debug for LdapAuthConfig
Source§impl<'de> Deserialize<'de> for LdapAuthConfig
impl<'de> Deserialize<'de> for LdapAuthConfig
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
Auto Trait Implementations§
impl Freeze for LdapAuthConfig
impl RefUnwindSafe for LdapAuthConfig
impl Send for LdapAuthConfig
impl Sync for LdapAuthConfig
impl Unpin for LdapAuthConfig
impl UnsafeUnpin for LdapAuthConfig
impl UnwindSafe for LdapAuthConfig
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