pub struct AuthenticationSSOStartedDataSSO {
pub organization_id: Option<String>,
pub connection_id: Option<String>,
pub session_id: Option<String>,
}Expand description
SSO connection details.
Fields§
§organization_id: Option<String>The ID of the organization.
connection_id: Option<String>The ID of the SSO connection.
session_id: Option<String>The ID of the SSO session.
Trait Implementations§
Source§impl Clone for AuthenticationSSOStartedDataSSO
impl Clone for AuthenticationSSOStartedDataSSO
Source§fn clone(&self) -> AuthenticationSSOStartedDataSSO
fn clone(&self) -> AuthenticationSSOStartedDataSSO
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AuthenticationSSOStartedDataSSO
impl<'de> Deserialize<'de> for AuthenticationSSOStartedDataSSO
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
Auto Trait Implementations§
impl Freeze for AuthenticationSSOStartedDataSSO
impl RefUnwindSafe for AuthenticationSSOStartedDataSSO
impl Send for AuthenticationSSOStartedDataSSO
impl Sync for AuthenticationSSOStartedDataSSO
impl Unpin for AuthenticationSSOStartedDataSSO
impl UnsafeUnpin for AuthenticationSSOStartedDataSSO
impl UnwindSafe for AuthenticationSSOStartedDataSSO
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