pub struct CommandQueueLimits {
pub high: usize,
pub normal: usize,
pub low: usize,
}Expand description
Bounded queue limits by command priority.
Fields§
§high: usizeHigh-priority queue capacity.
normal: usizeNormal-priority queue capacity.
low: usizeLow-priority queue capacity.
Trait Implementations§
Source§impl Clone for CommandQueueLimits
impl Clone for CommandQueueLimits
Source§fn clone(&self) -> CommandQueueLimits
fn clone(&self) -> CommandQueueLimits
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for CommandQueueLimits
Source§impl Debug for CommandQueueLimits
impl Debug for CommandQueueLimits
Source§impl Default for CommandQueueLimits
impl Default for CommandQueueLimits
impl Eq for CommandQueueLimits
Source§impl PartialEq for CommandQueueLimits
impl PartialEq for CommandQueueLimits
impl StructuralPartialEq for CommandQueueLimits
Auto Trait Implementations§
impl Freeze for CommandQueueLimits
impl RefUnwindSafe for CommandQueueLimits
impl Send for CommandQueueLimits
impl Sync for CommandQueueLimits
impl Unpin for CommandQueueLimits
impl UnsafeUnpin for CommandQueueLimits
impl UnwindSafe for CommandQueueLimits
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