#[non_exhaustive]pub struct PhysicalDeviceGroupProperties {
pub physical_devices: Vec<Arc<PhysicalDevice>>,
pub subset_allocation: bool,
}Expand description
Properties of a group of physical devices that can be used to create a single logical device.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.physical_devices: Vec<Arc<PhysicalDevice>>The physical devices that make up the group.
A physical device can belong to at most one group, but a group can consist of a single physical device.
subset_allocation: boolWhether memory can be allocated from a subset of the devices in the group, rather than only from the group as a whole.
If the length of physical_devices is 1, then this is always false.
Trait Implementations§
Source§impl Clone for PhysicalDeviceGroupProperties
impl Clone for PhysicalDeviceGroupProperties
Source§fn clone(&self) -> PhysicalDeviceGroupProperties
fn clone(&self) -> PhysicalDeviceGroupProperties
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PhysicalDeviceGroupProperties
impl !RefUnwindSafe for PhysicalDeviceGroupProperties
impl Send for PhysicalDeviceGroupProperties
impl Sync for PhysicalDeviceGroupProperties
impl Unpin for PhysicalDeviceGroupProperties
impl UnsafeUnpin for PhysicalDeviceGroupProperties
impl !UnwindSafe for PhysicalDeviceGroupProperties
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more