pub struct SamlPropertyMappingRequest {
pub managed: Option<Option<String>>,
pub name: String,
pub expression: String,
pub saml_name: String,
pub friendly_name: Option<Option<String>>,
}
Expand description
SamlPropertyMappingRequest : 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: String
§expression: String
§saml_name: String
§friendly_name: Option<Option<String>>
Implementations§
Trait Implementations§
Source§impl Clone for SamlPropertyMappingRequest
impl Clone for SamlPropertyMappingRequest
Source§fn clone(&self) -> SamlPropertyMappingRequest
fn clone(&self) -> SamlPropertyMappingRequest
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 Debug for SamlPropertyMappingRequest
impl Debug for SamlPropertyMappingRequest
Source§impl Default for SamlPropertyMappingRequest
impl Default for SamlPropertyMappingRequest
Source§fn default() -> SamlPropertyMappingRequest
fn default() -> SamlPropertyMappingRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SamlPropertyMappingRequest
impl<'de> Deserialize<'de> for SamlPropertyMappingRequest
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
impl StructuralPartialEq for SamlPropertyMappingRequest
Auto Trait Implementations§
impl Freeze for SamlPropertyMappingRequest
impl RefUnwindSafe for SamlPropertyMappingRequest
impl Send for SamlPropertyMappingRequest
impl Sync for SamlPropertyMappingRequest
impl Unpin for SamlPropertyMappingRequest
impl UnwindSafe for SamlPropertyMappingRequest
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