#[repr(C)]pub struct D3D12FenceSubmitInfoKHR {
pub s_type: StructureType,
pub p_next: *const c_void,
pub wait_semaphore_values_count: u32,
pub p_wait_semaphore_values: *const u64,
pub signal_semaphore_values_count: u32,
pub p_signal_semaphore_values: *const u64,
}Expand description
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_D3D12_FENCE_SUBMIT_INFO_KHR.
p_next: *const c_voidOptional, may be null.
wait_semaphore_values_count: u32Length of p_wait_semaphore_values.
p_wait_semaphore_values: *const u64Optional, may be null.
signal_semaphore_values_count: u32Length of p_signal_semaphore_values.
p_signal_semaphore_values: *const u64Optional, may be null.
Implementations§
Source§impl D3D12FenceSubmitInfoKHR
impl D3D12FenceSubmitInfoKHR
Sourcepub fn builder<'a>() -> D3D12FenceSubmitInfoKHRBuilder<'a>
pub fn builder<'a>() -> D3D12FenceSubmitInfoKHRBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for D3D12FenceSubmitInfoKHR
impl Clone for D3D12FenceSubmitInfoKHR
Source§fn clone(&self) -> D3D12FenceSubmitInfoKHR
fn clone(&self) -> D3D12FenceSubmitInfoKHR
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 D3D12FenceSubmitInfoKHR
impl Debug for D3D12FenceSubmitInfoKHR
Source§impl Default for D3D12FenceSubmitInfoKHR
impl Default for D3D12FenceSubmitInfoKHR
impl Copy for D3D12FenceSubmitInfoKHR
impl ExtendsSubmitInfo for D3D12FenceSubmitInfoKHR
Auto Trait Implementations§
impl Freeze for D3D12FenceSubmitInfoKHR
impl RefUnwindSafe for D3D12FenceSubmitInfoKHR
impl !Send for D3D12FenceSubmitInfoKHR
impl !Sync for D3D12FenceSubmitInfoKHR
impl Unpin for D3D12FenceSubmitInfoKHR
impl UnsafeUnpin for D3D12FenceSubmitInfoKHR
impl UnwindSafe for D3D12FenceSubmitInfoKHR
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