Struct erupt_bootstrap::device::QueueSetup
source · [−]pub struct QueueSetup {
pub flags: DeviceQueueCreateFlags,
pub queue_family_index: u32,
pub queue_priorities: Vec<c_float>,
}Expand description
Setup for vk::Queue creation. Used within CustomQueueSetupFn.
The Hash and PartialEq implementations on this struct only
compare queue_family_index.
Fields
flags: DeviceQueueCreateFlagsFlags used to specify usage behavior of the queue.
queue_family_index: u32Index of the queue family in the queue family array.
queue_priorities: Vec<c_float>Specifies the amount of queues and the respective priority for each.
Implementations
Create a new custom queue setup with simplified arguments. Queue priorities will all be 1.0 and all flags will be empty.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for QueueSetup
impl Send for QueueSetup
impl Sync for QueueSetup
impl Unpin for QueueSetup
impl UnwindSafe for QueueSetup
Blanket Implementations
Mutably borrows from an owned value. Read more