pub struct AuthenticationSSOTimedOutData {
pub type_: String,
pub status: String,
pub ip_address: Option<String>,
pub user_agent: Option<String>,
pub user_id: Option<String>,
pub email: Option<String>,
pub sso: AuthenticationSSOTimedOutDataSSO,
pub error: AuthenticationSSOTimedOutDataError,
}Expand description
The event payload.
Fields§
§type_: String§status: String§ip_address: Option<String>The IP address of the request.
user_agent: Option<String>The user agent of the request.
user_id: Option<String>The ID of the user.
email: Option<String>The email address of the user.
sso: AuthenticationSSOTimedOutDataSSOSSO connection details.
error: AuthenticationSSOTimedOutDataErrorDetails about the authentication error.
Trait Implementations§
Source§impl Clone for AuthenticationSSOTimedOutData
impl Clone for AuthenticationSSOTimedOutData
Source§fn clone(&self) -> AuthenticationSSOTimedOutData
fn clone(&self) -> AuthenticationSSOTimedOutData
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 AuthenticationSSOTimedOutData
impl<'de> Deserialize<'de> for AuthenticationSSOTimedOutData
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 AuthenticationSSOTimedOutData
impl RefUnwindSafe for AuthenticationSSOTimedOutData
impl Send for AuthenticationSSOTimedOutData
impl Sync for AuthenticationSSOTimedOutData
impl Unpin for AuthenticationSSOTimedOutData
impl UnsafeUnpin for AuthenticationSSOTimedOutData
impl UnwindSafe for AuthenticationSSOTimedOutData
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