[][src]Struct gfx_hal::Gpu

pub struct Gpu<B: Backend> {
    pub device: B::Device,
    pub queues: Queues<B>,
}

Represents a combination of a logical device and the hardware queues it provides.

This structure is typically created using an Adapter.

Fields

device: B::Device

Logical device for a given backend.

queues: Queues<B>

The command queues that the device provides.

Trait Implementations

impl<B: Debug + Backend> Debug for Gpu<B> where
    B::Device: Debug
[src]

Auto Trait Implementations

impl<B> Sync for Gpu<B> where
    <B as Backend>::CommandQueue: Sync,
    <B as Backend>::Device: Sync,
    <B as Backend>::QueueFamily: Sync

impl<B> Send for Gpu<B> where
    <B as Backend>::CommandQueue: Send,
    <B as Backend>::Device: Send,
    <B as Backend>::QueueFamily: Send

impl<B> Unpin for Gpu<B> where
    <B as Backend>::CommandQueue: Unpin,
    <B as Backend>::Device: Unpin,
    <B as Backend>::QueueFamily: Unpin

impl<B> RefUnwindSafe for Gpu<B> where
    <B as Backend>::CommandQueue: RefUnwindSafe,
    <B as Backend>::Device: RefUnwindSafe,
    <B as Backend>::QueueFamily: RefUnwindSafe

impl<B> UnwindSafe for Gpu<B> where
    <B as Backend>::CommandQueue: UnwindSafe,
    <B as Backend>::Device: UnwindSafe,
    <B as Backend>::QueueFamily: UnwindSafe

Blanket Implementations

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

impl<T> From<T> 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.

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

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

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