pub struct PriorityGlobalQueueMode;Expand description
A task fetching mode using a priority global queue.
In this mode, all tasks are placed into a single global queue that orders tasks based on their priorities. Workers fetch the highest-priority tasks from the queue.
Trait Implementations§
impl PriorityTaskFetchMode for PriorityGlobalQueueMode
Auto Trait Implementations§
impl Freeze for PriorityGlobalQueueMode
impl RefUnwindSafe for PriorityGlobalQueueMode
impl Send for PriorityGlobalQueueMode
impl Sync for PriorityGlobalQueueMode
impl Unpin for PriorityGlobalQueueMode
impl UnwindSafe for PriorityGlobalQueueMode
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