Struct ash::vk::DeviceGroupSubmitInfo
source · #[repr(C)]pub struct DeviceGroupSubmitInfo<'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 ()>,
}
Expand description
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 moresource§impl<'a> Debug for DeviceGroupSubmitInfo<'a>
impl<'a> Debug for DeviceGroupSubmitInfo<'a>
source§impl Default for DeviceGroupSubmitInfo<'_>
impl Default for DeviceGroupSubmitInfo<'_>
source§impl<'a> TaggedStructure for DeviceGroupSubmitInfo<'a>
impl<'a> TaggedStructure for DeviceGroupSubmitInfo<'a>
const STRUCTURE_TYPE: StructureType = StructureType::DEVICE_GROUP_SUBMIT_INFO
impl<'a> Copy for DeviceGroupSubmitInfo<'a>
impl ExtendsSubmitInfo for DeviceGroupSubmitInfo<'_>
impl Send for DeviceGroupSubmitInfo<'_>
impl Sync for DeviceGroupSubmitInfo<'_>
Auto Trait Implementations§
impl<'a> Freeze for DeviceGroupSubmitInfo<'a>
impl<'a> RefUnwindSafe for DeviceGroupSubmitInfo<'a>
impl<'a> Unpin for DeviceGroupSubmitInfo<'a>
impl<'a> UnwindSafe for DeviceGroupSubmitInfo<'a>
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