pub struct LdapAccessRules {
pub alg: Option<String>,
pub gen_key_pair: Option<String>,
pub key: Option<String>,
pub unique_identifier: Option<String>,
}Fields§
§alg: Option<String>§gen_key_pair: Option<String>Generate public/private key (the private key is required for the LDAP Auth Config in the Akeyless Gateway)
key: Option<String>The public key value of LDAP.
unique_identifier: Option<String>A unique identifier to distinguish different users
Implementations§
Source§impl LdapAccessRules
impl LdapAccessRules
pub fn new() -> LdapAccessRules
Trait Implementations§
Source§impl Clone for LdapAccessRules
impl Clone for LdapAccessRules
Source§fn clone(&self) -> LdapAccessRules
fn clone(&self) -> LdapAccessRules
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 LdapAccessRules
impl Debug for LdapAccessRules
Source§impl Default for LdapAccessRules
impl Default for LdapAccessRules
Source§fn default() -> LdapAccessRules
fn default() -> LdapAccessRules
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LdapAccessRules
impl<'de> Deserialize<'de> for LdapAccessRules
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 LdapAccessRules
impl PartialEq for LdapAccessRules
Source§fn eq(&self, other: &LdapAccessRules) -> bool
fn eq(&self, other: &LdapAccessRules) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LdapAccessRules
impl Serialize for LdapAccessRules
impl StructuralPartialEq for LdapAccessRules
Auto Trait Implementations§
impl Freeze for LdapAccessRules
impl RefUnwindSafe for LdapAccessRules
impl Send for LdapAccessRules
impl Sync for LdapAccessRules
impl Unpin for LdapAccessRules
impl UnsafeUnpin for LdapAccessRules
impl UnwindSafe for LdapAccessRules
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