pub struct SamlSsoInfo {
pub inbound_saml_sso_profile: Option<String>,
}Expand description
Details that are applicable when sso_mode == SAML_SSO.
This type is not used in any activity, and only used as part of another schema.
Fields§
§inbound_saml_sso_profile: Option<String>Required. Name of the InboundSamlSsoProfile to use. Must be of the form inboundSamlSsoProfiles/{inbound_saml_sso_profile}.
Trait Implementations§
Source§impl Clone for SamlSsoInfo
impl Clone for SamlSsoInfo
Source§fn clone(&self) -> SamlSsoInfo
fn clone(&self) -> SamlSsoInfo
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 SamlSsoInfo
impl Debug for SamlSsoInfo
Source§impl Default for SamlSsoInfo
impl Default for SamlSsoInfo
Source§fn default() -> SamlSsoInfo
fn default() -> SamlSsoInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SamlSsoInfo
impl<'de> Deserialize<'de> for SamlSsoInfo
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 Serialize for SamlSsoInfo
impl Serialize for SamlSsoInfo
impl Part for SamlSsoInfo
Auto Trait Implementations§
impl Freeze for SamlSsoInfo
impl RefUnwindSafe for SamlSsoInfo
impl Send for SamlSsoInfo
impl Sync for SamlSsoInfo
impl Unpin for SamlSsoInfo
impl UnwindSafe for SamlSsoInfo
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