pub struct AuthEvent {
pub event_type: String,
pub username: String,
pub user_pool_id: String,
pub client_id: Option<String>,
pub timestamp: f64,
pub success: bool,
}Fields§
§event_type: String§username: String§user_pool_id: String§client_id: Option<String>§timestamp: f64§success: boolTrait Implementations§
Source§impl<'de> Deserialize<'de> for AuthEvent
impl<'de> Deserialize<'de> for AuthEvent
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 AuthEvent
impl RefUnwindSafe for AuthEvent
impl Send for AuthEvent
impl Sync for AuthEvent
impl Unpin for AuthEvent
impl UnsafeUnpin for AuthEvent
impl UnwindSafe for AuthEvent
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