pub struct AuthenticationSSOStarted {
pub object: String,
pub id: String,
pub event: String,
pub data: AuthenticationSSOStartedData,
pub created_at: String,
pub context: Option<EventContext>,
}Fields§
§object: StringDistinguishes the Event object.
id: StringUnique identifier for the event.
event: String§data: AuthenticationSSOStartedDataThe event payload.
created_at: StringAn ISO 8601 timestamp.
context: Option<EventContext>Trait Implementations§
Source§impl Clone for AuthenticationSSOStarted
impl Clone for AuthenticationSSOStarted
Source§fn clone(&self) -> AuthenticationSSOStarted
fn clone(&self) -> AuthenticationSSOStarted
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 Debug for AuthenticationSSOStarted
impl Debug for AuthenticationSSOStarted
Source§impl<'de> Deserialize<'de> for AuthenticationSSOStarted
impl<'de> Deserialize<'de> for AuthenticationSSOStarted
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 AuthenticationSSOStarted
impl RefUnwindSafe for AuthenticationSSOStarted
impl Send for AuthenticationSSOStarted
impl Sync for AuthenticationSSOStarted
impl Unpin for AuthenticationSSOStarted
impl UnsafeUnpin for AuthenticationSSOStarted
impl UnwindSafe for AuthenticationSSOStarted
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