pub struct LdapConfigPart {Show 14 fields
pub ldap_access_id: Option<String>,
pub ldap_anonymous_search: Option<bool>,
pub ldap_bind_dn: Option<String>,
pub ldap_bind_password: Option<String>,
pub ldap_cert: Option<String>,
pub ldap_enable: Option<bool>,
pub ldap_group_attr: Option<String>,
pub ldap_group_dn: Option<String>,
pub ldap_group_filter: Option<String>,
pub ldap_private_key: Option<String>,
pub ldap_token_expiration: Option<String>,
pub ldap_url: Option<String>,
pub ldap_user_attr: Option<String>,
pub ldap_user_dn: Option<String>,
}Fields§
§ldap_access_id: Option<String>§ldap_anonymous_search: Option<bool>§ldap_bind_dn: Option<String>§ldap_bind_password: Option<String>§ldap_cert: Option<String>§ldap_enable: Option<bool>§ldap_group_attr: Option<String>§ldap_group_dn: Option<String>§ldap_group_filter: Option<String>§ldap_private_key: Option<String>§ldap_token_expiration: Option<String>§ldap_url: Option<String>§ldap_user_attr: Option<String>§ldap_user_dn: Option<String>Implementations§
Source§impl LdapConfigPart
impl LdapConfigPart
pub fn new() -> LdapConfigPart
Trait Implementations§
Source§impl Clone for LdapConfigPart
impl Clone for LdapConfigPart
Source§fn clone(&self) -> LdapConfigPart
fn clone(&self) -> LdapConfigPart
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LdapConfigPart
impl Debug for LdapConfigPart
Source§impl Default for LdapConfigPart
impl Default for LdapConfigPart
Source§fn default() -> LdapConfigPart
fn default() -> LdapConfigPart
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LdapConfigPart
impl<'de> Deserialize<'de> for LdapConfigPart
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 PartialEq for LdapConfigPart
impl PartialEq for LdapConfigPart
Source§fn eq(&self, other: &LdapConfigPart) -> bool
fn eq(&self, other: &LdapConfigPart) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LdapConfigPart
impl Serialize for LdapConfigPart
impl StructuralPartialEq for LdapConfigPart
Auto Trait Implementations§
impl Freeze for LdapConfigPart
impl RefUnwindSafe for LdapConfigPart
impl Send for LdapConfigPart
impl Sync for LdapConfigPart
impl Unpin for LdapConfigPart
impl UnsafeUnpin for LdapConfigPart
impl UnwindSafe for LdapConfigPart
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