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
sourceimpl Clone for QueueEvent
impl Clone for QueueEvent
sourcefn clone(&self) -> QueueEvent
fn clone(&self) -> QueueEvent
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for QueueEvent
impl Debug for QueueEvent
sourceimpl Display for QueueEvent
impl Display for QueueEvent
sourceimpl Hash for QueueEvent
impl Hash for QueueEvent
sourceimpl Ord for QueueEvent
impl Ord for QueueEvent
sourcefn cmp(&self, other: &QueueEvent) -> Ordering
fn cmp(&self, other: &QueueEvent) -> Ordering
1.21.0 · sourcefn max(self, other: Self) -> Self
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Self
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialEq<QueueEvent> for QueueEvent
impl PartialEq<QueueEvent> for QueueEvent
sourcefn eq(&self, other: &QueueEvent) -> bool
fn eq(&self, other: &QueueEvent) -> bool
sourceimpl PartialOrd<QueueEvent> for QueueEvent
impl PartialOrd<QueueEvent> for QueueEvent
sourcefn partial_cmp(&self, other: &QueueEvent) -> Option<Ordering>
fn partial_cmp(&self, other: &QueueEvent) -> Option<Ordering>
1.0.0 · sourcefn 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 moreimpl Eq for QueueEvent
impl StructuralEq for QueueEvent
impl StructuralPartialEq for QueueEvent
Auto Trait Implementations
impl RefUnwindSafe for QueueEvent
impl Send for QueueEvent
impl Sync for QueueEvent
impl Unpin for QueueEvent
impl UnwindSafe for QueueEvent
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more