#[repr(C)]pub struct BindImageMemoryInfo {
pub sType: StructureType,
pub pNext: *const c_void,
pub image: Image,
pub memory: DeviceMemory,
pub memoryOffset: DeviceSize,
}
Fields§
§sType: StructureType
§pNext: *const c_void
§image: Image
§memory: DeviceMemory
§memoryOffset: DeviceSize
Trait Implementations§
Source§impl Clone for BindImageMemoryInfo
impl Clone for BindImageMemoryInfo
Source§fn clone(&self) -> BindImageMemoryInfo
fn clone(&self) -> BindImageMemoryInfo
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 moreimpl Copy for BindImageMemoryInfo
Auto Trait Implementations§
impl Freeze for BindImageMemoryInfo
impl RefUnwindSafe for BindImageMemoryInfo
impl !Send for BindImageMemoryInfo
impl !Sync for BindImageMemoryInfo
impl Unpin for BindImageMemoryInfo
impl UnwindSafe for BindImageMemoryInfo
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