#[repr(C)]pub struct CopyMemoryToImageIndirectCommandKHR {
pub src_address: DeviceAddress,
pub buffer_row_length: u32,
pub buffer_image_height: u32,
pub image_subresource: ImageSubresourceLayers,
pub image_offset: Offset3D,
pub image_extent: Extent3D,
}Expand description
Fields§
§src_address: DeviceAddress§buffer_row_length: u32§buffer_image_height: u32§image_subresource: ImageSubresourceLayers§image_offset: Offset3D§image_extent: Extent3DImplementations§
Source§impl CopyMemoryToImageIndirectCommandKHR
impl CopyMemoryToImageIndirectCommandKHR
pub fn src_address(self, src_address: DeviceAddress) -> Self
pub fn buffer_row_length(self, buffer_row_length: u32) -> Self
pub fn buffer_image_height(self, buffer_image_height: u32) -> Self
pub fn image_subresource( self, image_subresource: ImageSubresourceLayers, ) -> Self
pub fn image_offset(self, image_offset: Offset3D) -> Self
pub fn image_extent(self, image_extent: Extent3D) -> Self
Trait Implementations§
Source§impl Clone for CopyMemoryToImageIndirectCommandKHR
impl Clone for CopyMemoryToImageIndirectCommandKHR
Source§fn clone(&self) -> CopyMemoryToImageIndirectCommandKHR
fn clone(&self) -> CopyMemoryToImageIndirectCommandKHR
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 Default for CopyMemoryToImageIndirectCommandKHR
impl Default for CopyMemoryToImageIndirectCommandKHR
Source§fn default() -> CopyMemoryToImageIndirectCommandKHR
fn default() -> CopyMemoryToImageIndirectCommandKHR
Returns the “default value” for a type. Read more
impl Copy for CopyMemoryToImageIndirectCommandKHR
Auto Trait Implementations§
impl Freeze for CopyMemoryToImageIndirectCommandKHR
impl RefUnwindSafe for CopyMemoryToImageIndirectCommandKHR
impl Send for CopyMemoryToImageIndirectCommandKHR
impl Sync for CopyMemoryToImageIndirectCommandKHR
impl Unpin for CopyMemoryToImageIndirectCommandKHR
impl UnwindSafe for CopyMemoryToImageIndirectCommandKHR
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