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