[−][src]Struct rendy_factory::Config
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: Debug, H: Debug, Q: Debug> Debug for Config<D, H, Q>
[src]
impl<D: Default, H: Default, Q: Default> Default for Config<D, H, Q>
[src]
Auto Trait Implementations
impl<D, H, Q> RefUnwindSafe for Config<D, H, Q> where
D: RefUnwindSafe,
H: RefUnwindSafe,
Q: RefUnwindSafe,
D: RefUnwindSafe,
H: RefUnwindSafe,
Q: RefUnwindSafe,
impl<D, H, Q> Send for Config<D, H, Q> where
D: Send,
H: Send,
Q: Send,
D: Send,
H: Send,
Q: Send,
impl<D, H, Q> Sync for Config<D, H, Q> where
D: Sync,
H: Sync,
Q: Sync,
D: Sync,
H: Sync,
Q: Sync,
impl<D, H, Q> Unpin for Config<D, H, Q> where
D: Unpin,
H: Unpin,
Q: Unpin,
D: Unpin,
H: Unpin,
Q: Unpin,
impl<D, H, Q> UnwindSafe for Config<D, H, Q> where
D: UnwindSafe,
H: UnwindSafe,
Q: UnwindSafe,
D: UnwindSafe,
H: UnwindSafe,
Q: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,