pub struct KerberosAuthMethodInfo {
pub kerberos_keytab: Option<String>,
pub kerberos_krb5_conf: Option<String>,
pub ldap_anonymous_search: Option<bool>,
pub ldap_bind_dn: Option<String>,
pub ldap_bind_password: Option<String>,
pub ldap_certificate: Option<String>,
pub ldap_group_attr: Option<String>,
pub ldap_group_dn: Option<String>,
pub ldap_group_filter: Option<String>,
pub ldap_url_address: Option<String>,
pub ldap_user_attr: Option<String>,
pub ldap_user_dn: Option<String>,
}Fields§
§kerberos_keytab: Option<String>§kerberos_krb5_conf: Option<String>§ldap_anonymous_search: Option<bool>§ldap_bind_dn: Option<String>§ldap_bind_password: Option<String>§ldap_certificate: Option<String>§ldap_group_attr: Option<String>§ldap_group_dn: Option<String>§ldap_group_filter: Option<String>§ldap_url_address: Option<String>§ldap_user_attr: Option<String>§ldap_user_dn: Option<String>Implementations§
Source§impl KerberosAuthMethodInfo
impl KerberosAuthMethodInfo
pub fn new() -> KerberosAuthMethodInfo
Trait Implementations§
Source§impl Clone for KerberosAuthMethodInfo
impl Clone for KerberosAuthMethodInfo
Source§fn clone(&self) -> KerberosAuthMethodInfo
fn clone(&self) -> KerberosAuthMethodInfo
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 KerberosAuthMethodInfo
impl Debug for KerberosAuthMethodInfo
Source§impl Default for KerberosAuthMethodInfo
impl Default for KerberosAuthMethodInfo
Source§fn default() -> KerberosAuthMethodInfo
fn default() -> KerberosAuthMethodInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for KerberosAuthMethodInfo
impl<'de> Deserialize<'de> for KerberosAuthMethodInfo
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 KerberosAuthMethodInfo
impl PartialEq for KerberosAuthMethodInfo
Source§fn eq(&self, other: &KerberosAuthMethodInfo) -> bool
fn eq(&self, other: &KerberosAuthMethodInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for KerberosAuthMethodInfo
impl Serialize for KerberosAuthMethodInfo
impl StructuralPartialEq for KerberosAuthMethodInfo
Auto Trait Implementations§
impl Freeze for KerberosAuthMethodInfo
impl RefUnwindSafe for KerberosAuthMethodInfo
impl Send for KerberosAuthMethodInfo
impl Sync for KerberosAuthMethodInfo
impl Unpin for KerberosAuthMethodInfo
impl UnsafeUnpin for KerberosAuthMethodInfo
impl UnwindSafe for KerberosAuthMethodInfo
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