Struct trace_recorder_parser::streaming::event::queue::QueueEvent
source · pub struct QueueEvent {
pub event_count: EventCount,
pub timestamp: Timestamp,
pub handle: ObjectHandle,
pub name: Option<QueueName>,
pub ticks_to_wait: Option<Ticks>,
pub messages_waiting: u32,
}
Fields§
§event_count: EventCount
§timestamp: Timestamp
§handle: ObjectHandle
§name: Option<QueueName>
§ticks_to_wait: Option<Ticks>
§messages_waiting: u32
Trait Implementations§
source§impl Clone for QueueEvent
impl Clone for QueueEvent
source§fn clone(&self) -> QueueEvent
fn clone(&self) -> QueueEvent
Returns a copy 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 QueueEvent
impl Debug for QueueEvent
source§impl Display for QueueEvent
impl Display for QueueEvent
source§impl Hash for QueueEvent
impl Hash for QueueEvent
source§impl Ord for QueueEvent
impl Ord for QueueEvent
source§fn cmp(&self, other: &QueueEvent) -> Ordering
fn cmp(&self, other: &QueueEvent) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<QueueEvent> for QueueEvent
impl PartialEq<QueueEvent> for QueueEvent
source§fn eq(&self, other: &QueueEvent) -> bool
fn eq(&self, other: &QueueEvent) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<QueueEvent> for QueueEvent
impl PartialOrd<QueueEvent> for QueueEvent
source§fn partial_cmp(&self, other: &QueueEvent) -> Option<Ordering>
fn partial_cmp(&self, other: &QueueEvent) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more