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