pub struct EventLogCreateEvent {
pub event_log: Option<Box<EventLog>>,
pub create_instant: Option<i64>,
pub id: Option<Uuid>,
pub info: Option<Box<EventInfo>>,
pub tenant_id: Option<Uuid>,
pub type: Option<EventType>,
}
Expand description
EventLogCreateEvent : An Event "event" to indicate an event log was created.
Fields§
§event_log: Option<Box<EventLog>>
§create_instant: Option<i64>
The number of milliseconds since the unix epoch: January 1, 1970 00:00:00 UTC. This value is always in UTC.
id: Option<Uuid>
§info: Option<Box<EventInfo>>
§tenant_id: Option<Uuid>
§type: Option<EventType>
Implementations§
Source§impl EventLogCreateEvent
impl EventLogCreateEvent
Sourcepub fn new() -> EventLogCreateEvent
pub fn new() -> EventLogCreateEvent
An Event "event" to indicate an event log was created.
Trait Implementations§
Source§impl Clone for EventLogCreateEvent
impl Clone for EventLogCreateEvent
Source§fn clone(&self) -> EventLogCreateEvent
fn clone(&self) -> EventLogCreateEvent
Returns a duplicate of the value. Read more
1.0.0 · 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 EventLogCreateEvent
impl Debug for EventLogCreateEvent
Source§impl Default for EventLogCreateEvent
impl Default for EventLogCreateEvent
Source§fn default() -> EventLogCreateEvent
fn default() -> EventLogCreateEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EventLogCreateEvent
impl<'de> Deserialize<'de> for EventLogCreateEvent
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 EventLogCreateEvent
impl PartialEq for EventLogCreateEvent
Source§impl Serialize for EventLogCreateEvent
impl Serialize for EventLogCreateEvent
impl StructuralPartialEq for EventLogCreateEvent
Auto Trait Implementations§
impl Freeze for EventLogCreateEvent
impl RefUnwindSafe for EventLogCreateEvent
impl Send for EventLogCreateEvent
impl Sync for EventLogCreateEvent
impl Unpin for EventLogCreateEvent
impl UnwindSafe for EventLogCreateEvent
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