pub struct OrganizationSsoResponseModel {
pub object: Option<String>,
pub enabled: Option<bool>,
pub identifier: Option<String>,
pub data: Option<Box<SsoConfigurationData>>,
pub urls: Option<Box<SsoUrls>>,
}
Fields§
§object: Option<String>
§enabled: Option<bool>
§identifier: Option<String>
§data: Option<Box<SsoConfigurationData>>
§urls: Option<Box<SsoUrls>>
Implementations§
Source§impl OrganizationSsoResponseModel
impl OrganizationSsoResponseModel
pub fn new() -> OrganizationSsoResponseModel
Trait Implementations§
Source§impl Clone for OrganizationSsoResponseModel
impl Clone for OrganizationSsoResponseModel
Source§fn clone(&self) -> OrganizationSsoResponseModel
fn clone(&self) -> OrganizationSsoResponseModel
Returns a copy 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 OrganizationSsoResponseModel
impl Debug for OrganizationSsoResponseModel
Source§impl Default for OrganizationSsoResponseModel
impl Default for OrganizationSsoResponseModel
Source§fn default() -> OrganizationSsoResponseModel
fn default() -> OrganizationSsoResponseModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OrganizationSsoResponseModel
impl<'de> Deserialize<'de> for OrganizationSsoResponseModel
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 OrganizationSsoResponseModel
impl PartialEq for OrganizationSsoResponseModel
Source§fn eq(&self, other: &OrganizationSsoResponseModel) -> bool
fn eq(&self, other: &OrganizationSsoResponseModel) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for OrganizationSsoResponseModel
Auto Trait Implementations§
impl Freeze for OrganizationSsoResponseModel
impl RefUnwindSafe for OrganizationSsoResponseModel
impl Send for OrganizationSsoResponseModel
impl Sync for OrganizationSsoResponseModel
impl Unpin for OrganizationSsoResponseModel
impl UnwindSafe for OrganizationSsoResponseModel
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