pub struct GetScimV2ResourceTypesResponseItem {
pub description: Option<String>,
pub endpoint: Option<String>,
pub id: Option<String>,
pub name: Option<String>,
pub schema: Option<String>,
pub schema_extensions: Option<Vec<GetScimV2ResourceTypesResponseItemSchemaExtensionsItem>>,
pub schemas: Option<Vec<String>>,
}
Fields§
§description: Option<String>
The resource’s description.
endpoint: Option<String>
The resource’s endpoint.
id: Option<String>
The resource’s ID.
name: Option<String>
The resource’s friendly name.
schema: Option<String>
The resource’s schema URI.
schema_extensions: Option<Vec<GetScimV2ResourceTypesResponseItemSchemaExtensionsItem>>
Information about the resource’s schema extensions.
schemas: Option<Vec<String>>
A list of SCIM schema resource URIs.
Trait Implementations§
Source§impl Clone for GetScimV2ResourceTypesResponseItem
impl Clone for GetScimV2ResourceTypesResponseItem
Source§fn clone(&self) -> GetScimV2ResourceTypesResponseItem
fn clone(&self) -> GetScimV2ResourceTypesResponseItem
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<'de> Deserialize<'de> for GetScimV2ResourceTypesResponseItem
impl<'de> Deserialize<'de> for GetScimV2ResourceTypesResponseItem
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 GetScimV2ResourceTypesResponseItem
impl PartialEq for GetScimV2ResourceTypesResponseItem
Source§fn eq(&self, other: &GetScimV2ResourceTypesResponseItem) -> bool
fn eq(&self, other: &GetScimV2ResourceTypesResponseItem) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetScimV2ResourceTypesResponseItem
Auto Trait Implementations§
impl Freeze for GetScimV2ResourceTypesResponseItem
impl RefUnwindSafe for GetScimV2ResourceTypesResponseItem
impl Send for GetScimV2ResourceTypesResponseItem
impl Sync for GetScimV2ResourceTypesResponseItem
impl Unpin for GetScimV2ResourceTypesResponseItem
impl UnwindSafe for GetScimV2ResourceTypesResponseItem
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