#[repr(C)]pub struct CopyMemoryIndirectInfoKHR {
pub s_type: StructureType,
pub p_next: *const c_void,
pub src_copy_flags: AddressCopyFlagsKHR,
pub dst_copy_flags: AddressCopyFlagsKHR,
pub copy_count: u32,
pub copy_address_range: StridedDeviceAddressRangeKHR,
}Expand description
VkCopyMemoryIndirectInfoKHR
Provided by VK_KHR_copy_memory_indirect.
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_COPY_MEMORY_INDIRECT_INFO_KHR.
p_next: *const c_voidOptional, may be null.
src_copy_flags: AddressCopyFlagsKHR§dst_copy_flags: AddressCopyFlagsKHR§copy_count: u32§copy_address_range: StridedDeviceAddressRangeKHRImplementations§
Source§impl CopyMemoryIndirectInfoKHR
impl CopyMemoryIndirectInfoKHR
Sourcepub fn builder<'a>() -> CopyMemoryIndirectInfoKHRBuilder<'a>
pub fn builder<'a>() -> CopyMemoryIndirectInfoKHRBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for CopyMemoryIndirectInfoKHR
impl Clone for CopyMemoryIndirectInfoKHR
Source§fn clone(&self) -> CopyMemoryIndirectInfoKHR
fn clone(&self) -> CopyMemoryIndirectInfoKHR
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 CopyMemoryIndirectInfoKHR
impl Debug for CopyMemoryIndirectInfoKHR
Source§impl Default for CopyMemoryIndirectInfoKHR
impl Default for CopyMemoryIndirectInfoKHR
impl Copy for CopyMemoryIndirectInfoKHR
Auto Trait Implementations§
impl Freeze for CopyMemoryIndirectInfoKHR
impl RefUnwindSafe for CopyMemoryIndirectInfoKHR
impl !Send for CopyMemoryIndirectInfoKHR
impl !Sync for CopyMemoryIndirectInfoKHR
impl Unpin for CopyMemoryIndirectInfoKHR
impl UnsafeUnpin for CopyMemoryIndirectInfoKHR
impl UnwindSafe for CopyMemoryIndirectInfoKHR
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