pub type DeviceGroupSubmitInfoKHR<'a> = DeviceGroupSubmitInfo<'a>;
Aliased Type§
struct DeviceGroupSubmitInfoKHR<'a> {
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,
pub _marker: PhantomData<&'a ()>,
}
Fields§
§s_type: StructureType
§p_next: *const c_void
§wait_semaphore_count: u32
§p_wait_semaphore_device_indices: *const u32
§command_buffer_count: u32
§p_command_buffer_device_masks: *const u32
§signal_semaphore_count: u32
§p_signal_semaphore_device_indices: *const u32
§_marker: PhantomData<&'a ()>
Implementations
Source§impl<'a> DeviceGroupSubmitInfo<'a>
impl<'a> DeviceGroupSubmitInfo<'a>
pub fn wait_semaphore_device_indices( self, wait_semaphore_device_indices: &'a [u32], ) -> Self
pub fn command_buffer_device_masks( self, command_buffer_device_masks: &'a [u32], ) -> Self
pub fn signal_semaphore_device_indices( self, signal_semaphore_device_indices: &'a [u32], ) -> Self
Trait Implementations
Source§impl<'a> Clone for DeviceGroupSubmitInfo<'a>
impl<'a> Clone for DeviceGroupSubmitInfo<'a>
Source§fn clone(&self) -> DeviceGroupSubmitInfo<'a>
fn clone(&self) -> DeviceGroupSubmitInfo<'a>
Returns a copy 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 more