pub struct KerberosSourcePropertyMappingRequest {
pub managed: Option<Option<String>>,
pub name: String,
pub expression: String,
}Expand description
KerberosSourcePropertyMappingRequest : Kerberos PropertyMapping Serializer
Fields§
§managed: Option<Option<String>>Objects that are managed by authentik. These objects are created and updated automatically. This flag only indicates that an object can be overwritten by migrations. You can still modify the objects via the API, but expect changes to be overwritten in a later update.
name: String§expression: StringImplementations§
Source§impl KerberosSourcePropertyMappingRequest
impl KerberosSourcePropertyMappingRequest
Sourcepub fn new(
name: String,
expression: String,
) -> KerberosSourcePropertyMappingRequest
pub fn new( name: String, expression: String, ) -> KerberosSourcePropertyMappingRequest
Kerberos PropertyMapping Serializer
Trait Implementations§
Source§impl Clone for KerberosSourcePropertyMappingRequest
impl Clone for KerberosSourcePropertyMappingRequest
Source§fn clone(&self) -> KerberosSourcePropertyMappingRequest
fn clone(&self) -> KerberosSourcePropertyMappingRequest
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 Default for KerberosSourcePropertyMappingRequest
impl Default for KerberosSourcePropertyMappingRequest
Source§fn default() -> KerberosSourcePropertyMappingRequest
fn default() -> KerberosSourcePropertyMappingRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for KerberosSourcePropertyMappingRequest
impl<'de> Deserialize<'de> for KerberosSourcePropertyMappingRequest
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 KerberosSourcePropertyMappingRequest
impl PartialEq for KerberosSourcePropertyMappingRequest
Source§fn eq(&self, other: &KerberosSourcePropertyMappingRequest) -> bool
fn eq(&self, other: &KerberosSourcePropertyMappingRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for KerberosSourcePropertyMappingRequest
Auto Trait Implementations§
impl Freeze for KerberosSourcePropertyMappingRequest
impl RefUnwindSafe for KerberosSourcePropertyMappingRequest
impl Send for KerberosSourcePropertyMappingRequest
impl Sync for KerberosSourcePropertyMappingRequest
impl Unpin for KerberosSourcePropertyMappingRequest
impl UnsafeUnpin for KerberosSourcePropertyMappingRequest
impl UnwindSafe for KerberosSourcePropertyMappingRequest
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