pub struct RacPropertyMapping {
pub pk: Uuid,
pub managed: Option<Option<String>>,
pub name: String,
pub expression: Option<String>,
pub component: String,
pub verbose_name: String,
pub verbose_name_plural: String,
pub meta_model_name: String,
pub static_settings: HashMap<String, Value>,
}
Expand description
RacPropertyMapping : RACPropertyMapping Serializer
Fields§
§pk: Uuid
§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>
§component: String
Get object’s component so that we know how to edit the object
verbose_name: String
Return object’s verbose_name
verbose_name_plural: String
Return object’s plural verbose_name
meta_model_name: String
Return internal model name
static_settings: HashMap<String, Value>
Implementations§
Trait Implementations§
Source§impl Clone for RacPropertyMapping
impl Clone for RacPropertyMapping
Source§fn clone(&self) -> RacPropertyMapping
fn clone(&self) -> RacPropertyMapping
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 RacPropertyMapping
impl Debug for RacPropertyMapping
Source§impl Default for RacPropertyMapping
impl Default for RacPropertyMapping
Source§fn default() -> RacPropertyMapping
fn default() -> RacPropertyMapping
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RacPropertyMapping
impl<'de> Deserialize<'de> for RacPropertyMapping
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 RacPropertyMapping
impl PartialEq for RacPropertyMapping
Source§impl Serialize for RacPropertyMapping
impl Serialize for RacPropertyMapping
impl StructuralPartialEq for RacPropertyMapping
Auto Trait Implementations§
impl Freeze for RacPropertyMapping
impl RefUnwindSafe for RacPropertyMapping
impl Send for RacPropertyMapping
impl Sync for RacPropertyMapping
impl Unpin for RacPropertyMapping
impl UnwindSafe for RacPropertyMapping
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