Struct vulkano::device::Queue [] [src]

pub struct Queue {
    // some fields omitted
}

Represents a queue where commands can be submitted.

Methods

impl Queue
[src]

Returns the device this queue belongs to.

Returns the family this queue belongs to.

Returns the index of this queue within its family.

See the docs of wait().

Waits until all work on this queue has finished.

Just like Device::wait(), you shouldn't have to call this function.

Panic

  • Panics if the device or host ran out of memory.

Trait Implementations

impl Debug for Queue
[src]

Formats the value using the given formatter.

impl SynchronizedVulkanObject for Queue
[src]

The type of the object.

Returns a reference to the object.