Struct asche::Queues[][src]

pub struct Queues {
    pub compute_queues: Vec<ComputeQueue>,
    pub graphics_queues: Vec<GraphicsQueue>,
    pub transfer_queues: Vec<TransferQueue>,
}

Contains all queues that were created for the device.

Fields

compute_queues: Vec<ComputeQueue>

Contains the created compute queues.

graphics_queues: Vec<GraphicsQueue>

Contains the created graphics queues.

transfer_queues: Vec<TransferQueue>

Contains the created transfer queues.

Trait Implementations

impl Debug for Queues[src]

Auto Trait Implementations

impl RefUnwindSafe for Queues

impl Send for Queues

impl Sync for Queues

impl Unpin for Queues

impl UnwindSafe for Queues

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.