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