Struct fusionauth_rust_client::models::event_log::EventLog
source · pub struct EventLog {
pub id: Option<i64>,
pub insert_instant: Option<i64>,
pub message: Option<String>,
pub type: Option<EventLogType>,
}
Expand description
EventLog : Event log used internally by FusionAuth to help developers debug hooks, Webhooks, email templates, etc.
Fields§
§id: Option<i64>
§insert_instant: Option<i64>
The number of milliseconds since the unix epoch: January 1, 1970 00:00:00 UTC. This value is always in UTC.
message: Option<String>
§type: Option<EventLogType>
Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for EventLog
impl<'de> Deserialize<'de> for EventLog
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 PartialEq for EventLog
impl PartialEq for EventLog
impl StructuralPartialEq for EventLog
Auto Trait Implementations§
impl RefUnwindSafe for EventLog
impl Send for EventLog
impl Sync for EventLog
impl Unpin for EventLog
impl UnwindSafe for EventLog
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