pub struct QueueEntry {
pub queue: Grc<Queue>,
pub enqueue_time: f64,
}
Expand description
The information about the queue entry.
Fields§
§queue: Grc<Queue>
The entry queue.
enqueue_time: f64
The time of registering the queue entry.
Trait Implementations§
Source§impl Clone for QueueEntry
impl Clone for QueueEntry
Source§fn clone(&self) -> QueueEntry
fn clone(&self) -> QueueEntry
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 moreAuto Trait Implementations§
impl Freeze for QueueEntry
impl !RefUnwindSafe for QueueEntry
impl !Send for QueueEntry
impl !Sync for QueueEntry
impl Unpin for QueueEntry
impl !UnwindSafe for QueueEntry
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