[][src]Struct rendy_factory::Config

pub struct Config<D = BasicDevicesConfigure, H = BasicHeapsConfigure, Q = OneGraphicsQueue> {
    pub devices: D,
    pub heaps: H,
    pub queues: Q,
}

Factory initialization config.

devices - DeviceConfigure implementation instance to pick physical device. BasicDevicesConfigure can be used as sane default. heaps - HeapsConfigure implementation instance to cofigure memory allocators. BasicHeapsConfigure can be used as sane default. queues - QueuesConfigure implementation to configure device queues creation. OneGraphicsQueue can be used if only one graphics queue will satisfy requirements.

Fields

devices: D

Config to choose adapter.

heaps: H

Config for memory::Heaps.

queues: Q

Config for queue families.

Trait Implementations

impl<D: Clone, H: Clone, Q: Clone> Clone for Config<D, H, Q>[src]

impl<D: Default, H: Default, Q: Default> Default for Config<D, H, Q>[src]

impl<D: Debug, H: Debug, Q: Debug> Debug for Config<D, H, Q>[src]

Auto Trait Implementations

impl<D, H, Q> Send for Config<D, H, Q> where
    D: Send,
    H: Send,
    Q: Send

impl<D, H, Q> Sync for Config<D, H, Q> where
    D: Sync,
    H: Sync,
    Q: Sync

impl<D, H, Q> Unpin for Config<D, H, Q> where
    D: Unpin,
    H: Unpin,
    Q: Unpin

impl<D, H, Q> UnwindSafe for Config<D, H, Q> where
    D: UnwindSafe,
    H: UnwindSafe,
    Q: UnwindSafe

impl<D, H, Q> RefUnwindSafe for Config<D, H, Q> where
    D: RefUnwindSafe,
    H: RefUnwindSafe,
    Q: RefUnwindSafe

Blanket Implementations

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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