pub struct PatchedSamlPropertyMappingRequest {
pub managed: Option<Option<String>>,
pub name: Option<String>,
pub expression: Option<String>,
pub saml_name: Option<String>,
pub friendly_name: Option<Option<String>>,
}
Expand description
PatchedSamlPropertyMappingRequest : SAMLPropertyMapping 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: Option<String>
§expression: Option<String>
§saml_name: Option<String>
§friendly_name: Option<Option<String>>
Implementations§
Source§impl PatchedSamlPropertyMappingRequest
impl PatchedSamlPropertyMappingRequest
Sourcepub fn new() -> PatchedSamlPropertyMappingRequest
pub fn new() -> PatchedSamlPropertyMappingRequest
SAMLPropertyMapping Serializer
Trait Implementations§
Source§impl Clone for PatchedSamlPropertyMappingRequest
impl Clone for PatchedSamlPropertyMappingRequest
Source§fn clone(&self) -> PatchedSamlPropertyMappingRequest
fn clone(&self) -> PatchedSamlPropertyMappingRequest
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 PatchedSamlPropertyMappingRequest
impl Default for PatchedSamlPropertyMappingRequest
Source§fn default() -> PatchedSamlPropertyMappingRequest
fn default() -> PatchedSamlPropertyMappingRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PatchedSamlPropertyMappingRequest
impl<'de> Deserialize<'de> for PatchedSamlPropertyMappingRequest
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 PatchedSamlPropertyMappingRequest
impl PartialEq for PatchedSamlPropertyMappingRequest
Source§fn eq(&self, other: &PatchedSamlPropertyMappingRequest) -> bool
fn eq(&self, other: &PatchedSamlPropertyMappingRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PatchedSamlPropertyMappingRequest
Auto Trait Implementations§
impl Freeze for PatchedSamlPropertyMappingRequest
impl RefUnwindSafe for PatchedSamlPropertyMappingRequest
impl Send for PatchedSamlPropertyMappingRequest
impl Sync for PatchedSamlPropertyMappingRequest
impl Unpin for PatchedSamlPropertyMappingRequest
impl UnwindSafe for PatchedSamlPropertyMappingRequest
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