pub enum QueueAttribute {
Serial,
Concurrent,
}Expand description
The type of a dispatch queue.
Variants§
Serial
The queue executes blocks serially in FIFO order.
Concurrent
The queue executes blocks concurrently.
Trait Implementations§
Source§impl Clone for QueueAttribute
impl Clone for QueueAttribute
Source§fn clone(&self) -> QueueAttribute
fn clone(&self) -> QueueAttribute
Returns a duplicate 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 QueueAttribute
impl Debug for QueueAttribute
Source§impl Hash for QueueAttribute
impl Hash for QueueAttribute
Source§impl PartialEq for QueueAttribute
impl PartialEq for QueueAttribute
impl StructuralPartialEq for QueueAttribute
Auto Trait Implementations§
impl Freeze for QueueAttribute
impl RefUnwindSafe for QueueAttribute
impl Send for QueueAttribute
impl Sync for QueueAttribute
impl Unpin for QueueAttribute
impl UnwindSafe for QueueAttribute
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