pub struct ScimSource {Show 14 fields
pub pk: Uuid,
pub name: String,
pub slug: String,
pub enabled: Option<bool>,
pub user_property_mappings: Option<Vec<Uuid>>,
pub group_property_mappings: Option<Vec<Uuid>>,
pub component: String,
pub verbose_name: String,
pub verbose_name_plural: String,
pub meta_model_name: String,
pub managed: Option<String>,
pub user_path_template: Option<String>,
pub root_url: String,
pub token_obj: Token,
}
Expand description
ScimSource : SCIMSource Serializer
Fields§
§pk: Uuid
§name: String
Source’s display Name.
slug: String
Internal source name, used in URLs.
enabled: Option<bool>
§user_property_mappings: Option<Vec<Uuid>>
§group_property_mappings: Option<Vec<Uuid>>
§component: String
Get object 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
managed: 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.
user_path_template: Option<String>
§root_url: String
Get Root URL
token_obj: Token
Implementations§
Trait Implementations§
Source§impl Clone for ScimSource
impl Clone for ScimSource
Source§fn clone(&self) -> ScimSource
fn clone(&self) -> ScimSource
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 ScimSource
impl Debug for ScimSource
Source§impl Default for ScimSource
impl Default for ScimSource
Source§fn default() -> ScimSource
fn default() -> ScimSource
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ScimSource
impl<'de> Deserialize<'de> for ScimSource
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 ScimSource
impl PartialEq for ScimSource
Source§impl Serialize for ScimSource
impl Serialize for ScimSource
impl StructuralPartialEq for ScimSource
Auto Trait Implementations§
impl Freeze for ScimSource
impl RefUnwindSafe for ScimSource
impl Send for ScimSource
impl Sync for ScimSource
impl Unpin for ScimSource
impl UnwindSafe for ScimSource
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