pub struct QueueGroup<B: Backend> {
    pub family: QueueFamilyId,
    pub queues: Vec<B::Queue>,
}
Expand description

Bare-metal queue group.

Denotes all queues created from one queue family.

Fields

family: QueueFamilyId

Family index for the queues in this group.

queues: Vec<B::Queue>

List of queues.

Implementations

Create a new, empty queue group for a queue family.

Add a command queue to the group.

The queue needs to be created from this queue family.

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.