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