#[repr(C)]pub struct ImageToMemoryCopy {
pub s_type: StructureType,
pub next: *const c_void,
pub host_pointer: *mut c_void,
pub memory_row_length: u32,
pub memory_image_height: u32,
pub image_subresource: ImageSubresourceLayers,
pub image_offset: Offset3D,
pub image_extent: Extent3D,
}Expand description
Fields§
§s_type: StructureType§next: *const c_void§host_pointer: *mut c_void§memory_row_length: u32§memory_image_height: u32§image_subresource: ImageSubresourceLayers§image_offset: Offset3D§image_extent: Extent3DTrait Implementations§
Source§impl Clone for ImageToMemoryCopy
impl Clone for ImageToMemoryCopy
Source§fn clone(&self) -> ImageToMemoryCopy
fn clone(&self) -> ImageToMemoryCopy
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ImageToMemoryCopy
Source§impl Debug for ImageToMemoryCopy
impl Debug for ImageToMemoryCopy
Source§impl Default for ImageToMemoryCopy
impl Default for ImageToMemoryCopy
impl Eq for ImageToMemoryCopy
Source§impl Hash for ImageToMemoryCopy
impl Hash for ImageToMemoryCopy
Source§impl PartialEq for ImageToMemoryCopy
impl PartialEq for ImageToMemoryCopy
Source§fn eq(&self, other: &ImageToMemoryCopy) -> bool
fn eq(&self, other: &ImageToMemoryCopy) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Send for ImageToMemoryCopy
impl StructuralPartialEq for ImageToMemoryCopy
impl Sync for ImageToMemoryCopy
Auto Trait Implementations§
impl Freeze for ImageToMemoryCopy
impl RefUnwindSafe for ImageToMemoryCopy
impl Unpin for ImageToMemoryCopy
impl UnsafeUnpin for ImageToMemoryCopy
impl UnwindSafe for ImageToMemoryCopy
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