pub struct TimerFiredEventAttributes {
pub started_event_id: i64,
pub timer_id: String,
}
Expand description
Provides the details of the TimerFired
event.
Fields§
§started_event_id: i64
The ID of the TimerStarted
event that was recorded when this timer was started. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event.
timer_id: String
The unique ID of the timer that fired.
Trait Implementations§
Source§impl Clone for TimerFiredEventAttributes
impl Clone for TimerFiredEventAttributes
Source§fn clone(&self) -> TimerFiredEventAttributes
fn clone(&self) -> TimerFiredEventAttributes
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 TimerFiredEventAttributes
impl Debug for TimerFiredEventAttributes
Source§impl Default for TimerFiredEventAttributes
impl Default for TimerFiredEventAttributes
Source§fn default() -> TimerFiredEventAttributes
fn default() -> TimerFiredEventAttributes
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TimerFiredEventAttributes
impl<'de> Deserialize<'de> for TimerFiredEventAttributes
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
impl StructuralPartialEq for TimerFiredEventAttributes
Auto Trait Implementations§
impl Freeze for TimerFiredEventAttributes
impl RefUnwindSafe for TimerFiredEventAttributes
impl Send for TimerFiredEventAttributes
impl Sync for TimerFiredEventAttributes
impl Unpin for TimerFiredEventAttributes
impl UnwindSafe for TimerFiredEventAttributes
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