Struct trace_recorder_parser::streaming::event::queue::QueueCreateEvent
source · pub struct QueueCreateEvent {
pub event_count: EventCount,
pub timestamp: Timestamp,
pub handle: ObjectHandle,
pub name: Option<QueueName>,
pub queue_length: u32,
}
Fields§
§event_count: EventCount
§timestamp: Timestamp
§handle: ObjectHandle
§name: Option<QueueName>
§queue_length: u32
Trait Implementations§
source§impl Clone for QueueCreateEvent
impl Clone for QueueCreateEvent
source§fn clone(&self) -> QueueCreateEvent
fn clone(&self) -> QueueCreateEvent
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 QueueCreateEvent
impl Debug for QueueCreateEvent
source§impl Display for QueueCreateEvent
impl Display for QueueCreateEvent
source§impl Hash for QueueCreateEvent
impl Hash for QueueCreateEvent
source§impl Ord for QueueCreateEvent
impl Ord for QueueCreateEvent
source§fn cmp(&self, other: &QueueCreateEvent) -> Ordering
fn cmp(&self, other: &QueueCreateEvent) -> 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<QueueCreateEvent> for QueueCreateEvent
impl PartialEq<QueueCreateEvent> for QueueCreateEvent
source§fn eq(&self, other: &QueueCreateEvent) -> bool
fn eq(&self, other: &QueueCreateEvent) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<QueueCreateEvent> for QueueCreateEvent
impl PartialOrd<QueueCreateEvent> for QueueCreateEvent
source§fn partial_cmp(&self, other: &QueueCreateEvent) -> Option<Ordering>
fn partial_cmp(&self, other: &QueueCreateEvent) -> 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