Struct vulkano::instance::QueueFamily [] [src]

pub struct QueueFamily<'a> {
    // some fields omitted
}

Represents a queue family in a physical device.

A queue family is group of one or multiple queues. All queues of one family have the same characteristics.

Methods

impl<'a> QueueFamily<'a>
[src]

Returns the physical device associated to this queue family.

Returns the identifier of this queue family within the physical device.

Returns the number of queues that belong to this family.

Guaranteed to be at least 1 (or else that family wouldn't exist).

Returns true if queues of this family can execute graphics operations.

Returns true if queues of this family can execute compute operations.

Returns true if queues of this family can execute transfer operations.

Returns true if queues of this family can execute sparse resources binding operations.

Trait Implementations

impl<'a> Debug for QueueFamily<'a>
[src]

Formats the value using the given formatter.

impl<'a> Copy for QueueFamily<'a>
[src]

impl<'a> Clone for QueueFamily<'a>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more