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

pub struct QueueFamily<'a> { /* 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]

[src]

Returns the physical device associated to this queue family.

[src]

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

[src]

Returns the number of queues that belong to this family.

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

[src]

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

[src]

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

[src]

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

Note: Queues that support graphics or compute operations also always support transfer operations. As of writing this, this function will always return true. The purpose of this function is to be future-proofed in case queues that don't support transfer operations are ever added to Vulkan.

[src]

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

Trait Implementations

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

[src]

Formats the value using the given formatter.

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

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

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more