#[repr(C)]pub struct DeviceGroupSubmitInfo {
pub s_type: StructureType,
pub p_next: *const c_void,
pub wait_semaphore_count: u32,
pub p_wait_semaphore_device_indices: *const u32,
pub command_buffer_count: u32,
pub p_command_buffer_device_masks: *const u32,
pub signal_semaphore_count: u32,
pub p_signal_semaphore_device_indices: *const u32,
}Expand description
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_DEVICE_GROUP_SUBMIT_INFO.
p_next: *const c_voidOptional, may be null.
wait_semaphore_count: u32Length of p_wait_semaphore_device_indices.
p_wait_semaphore_device_indices: *const u32§command_buffer_count: u32Length of p_command_buffer_device_masks.
p_command_buffer_device_masks: *const u32§signal_semaphore_count: u32Length of p_signal_semaphore_device_indices.
p_signal_semaphore_device_indices: *const u32Implementations§
Source§impl DeviceGroupSubmitInfo
impl DeviceGroupSubmitInfo
Sourcepub fn builder<'a>() -> DeviceGroupSubmitInfoBuilder<'a>
pub fn builder<'a>() -> DeviceGroupSubmitInfoBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for DeviceGroupSubmitInfo
impl Clone for DeviceGroupSubmitInfo
Source§fn clone(&self) -> DeviceGroupSubmitInfo
fn clone(&self) -> DeviceGroupSubmitInfo
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 moreSource§impl Debug for DeviceGroupSubmitInfo
impl Debug for DeviceGroupSubmitInfo
Source§impl Default for DeviceGroupSubmitInfo
impl Default for DeviceGroupSubmitInfo
impl Copy for DeviceGroupSubmitInfo
impl ExtendsSubmitInfo for DeviceGroupSubmitInfo
Auto Trait Implementations§
impl Freeze for DeviceGroupSubmitInfo
impl RefUnwindSafe for DeviceGroupSubmitInfo
impl !Send for DeviceGroupSubmitInfo
impl !Sync for DeviceGroupSubmitInfo
impl Unpin for DeviceGroupSubmitInfo
impl UnsafeUnpin for DeviceGroupSubmitInfo
impl UnwindSafe for DeviceGroupSubmitInfo
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