pub struct ScimProvider {Show 14 fields
pub pk: i32,
pub name: String,
pub property_mappings: Option<Vec<Uuid>>,
pub property_mappings_group: Option<Vec<Uuid>>,
pub component: String,
pub assigned_backchannel_application_slug: String,
pub assigned_backchannel_application_name: String,
pub verbose_name: String,
pub verbose_name_plural: String,
pub meta_model_name: String,
pub url: String,
pub token: String,
pub exclude_users_service_account: Option<bool>,
pub filter_group: Option<Option<Uuid>>,
}
Expand description
ScimProvider : SCIMProvider Serializer
Fields§
§pk: i32
§name: String
§property_mappings: Option<Vec<Uuid>>
§property_mappings_group: Option<Vec<Uuid>>
Property mappings used for group creation/updating.
component: String
Get object component so that we know how to edit the object
assigned_backchannel_application_slug: String
Internal application name, used in URLs.
assigned_backchannel_application_name: String
Application’s display Name.
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
url: String
Base URL to SCIM requests, usually ends in /v2
token: String
Authentication token
exclude_users_service_account: Option<bool>
§filter_group: Option<Option<Uuid>>
Implementations§
Source§impl ScimProvider
impl ScimProvider
Trait Implementations§
Source§impl Clone for ScimProvider
impl Clone for ScimProvider
Source§fn clone(&self) -> ScimProvider
fn clone(&self) -> ScimProvider
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 ScimProvider
impl Debug for ScimProvider
Source§impl Default for ScimProvider
impl Default for ScimProvider
Source§fn default() -> ScimProvider
fn default() -> ScimProvider
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ScimProvider
impl<'de> Deserialize<'de> for ScimProvider
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 ScimProvider
impl PartialEq for ScimProvider
Source§impl Serialize for ScimProvider
impl Serialize for ScimProvider
impl StructuralPartialEq for ScimProvider
Auto Trait Implementations§
impl Freeze for ScimProvider
impl RefUnwindSafe for ScimProvider
impl Send for ScimProvider
impl Sync for ScimProvider
impl Unpin for ScimProvider
impl UnwindSafe for ScimProvider
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