pub struct GetScimV2ServiceProviderConfigResponse {
pub authentication_schemes: Option<Vec<GetScimV2ServiceProviderConfigResponseAuthenticationSchemesItem>>,
pub bulk: Option<GetScimV2ServiceProviderConfigResponseBulk>,
pub change_password: Option<GetScimV2ServiceProviderConfigResponseChangePassword>,
pub documentation_uri: Option<String>,
pub etag: Option<GetScimV2ServiceProviderConfigResponseEtag>,
pub filter: Option<GetScimV2ServiceProviderConfigResponseFilter>,
pub meta: Option<GetScimV2ServiceProviderConfigResponseMeta>,
pub patch: Option<GetScimV2ServiceProviderConfigResponsePatch>,
pub schemas: Option<Vec<String>>,
pub sort: Option<GetScimV2ServiceProviderConfigResponseSort>,
}
Fields§
§authentication_schemes: Option<Vec<GetScimV2ServiceProviderConfigResponseAuthenticationSchemesItem>>
A list of authentication schemes.
bulk: Option<GetScimV2ServiceProviderConfigResponseBulk>
§change_password: Option<GetScimV2ServiceProviderConfigResponseChangePassword>
§documentation_uri: Option<String>
A link to the URI’s documentation.
etag: Option<GetScimV2ServiceProviderConfigResponseEtag>
§filter: Option<GetScimV2ServiceProviderConfigResponseFilter>
§meta: Option<GetScimV2ServiceProviderConfigResponseMeta>
The response’s non-standard meta information.
patch: Option<GetScimV2ServiceProviderConfigResponsePatch>
§schemas: Option<Vec<String>>
A list of schema resource URIs.
sort: Option<GetScimV2ServiceProviderConfigResponseSort>
Trait Implementations§
Source§impl Clone for GetScimV2ServiceProviderConfigResponse
impl Clone for GetScimV2ServiceProviderConfigResponse
Source§fn clone(&self) -> GetScimV2ServiceProviderConfigResponse
fn clone(&self) -> GetScimV2ServiceProviderConfigResponse
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 GetScimV2ServiceProviderConfigResponse
impl<'de> Deserialize<'de> for GetScimV2ServiceProviderConfigResponse
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 GetScimV2ServiceProviderConfigResponse
impl PartialEq for GetScimV2ServiceProviderConfigResponse
Source§fn eq(&self, other: &GetScimV2ServiceProviderConfigResponse) -> bool
fn eq(&self, other: &GetScimV2ServiceProviderConfigResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetScimV2ServiceProviderConfigResponse
Auto Trait Implementations§
impl Freeze for GetScimV2ServiceProviderConfigResponse
impl RefUnwindSafe for GetScimV2ServiceProviderConfigResponse
impl Send for GetScimV2ServiceProviderConfigResponse
impl Sync for GetScimV2ServiceProviderConfigResponse
impl Unpin for GetScimV2ServiceProviderConfigResponse
impl UnwindSafe for GetScimV2ServiceProviderConfigResponse
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