Struct ash::vk::BindImageMemoryInfo
source · #[repr(C)]pub struct BindImageMemoryInfo {
pub s_type: StructureType,
pub p_next: *const c_void,
pub image: Image,
pub memory: DeviceMemory,
pub memory_offset: DeviceSize,
}
Expand description
Fields§
§s_type: StructureType
§p_next: *const c_void
§image: Image
§memory: DeviceMemory
§memory_offset: DeviceSize
Implementations§
source§impl BindImageMemoryInfo
impl BindImageMemoryInfo
pub fn builder<'a>() -> BindImageMemoryInfoBuilder<'a>
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 moresource§impl Debug for BindImageMemoryInfo
impl Debug for BindImageMemoryInfo
source§impl Default for BindImageMemoryInfo
impl Default for BindImageMemoryInfo
source§impl TaggedStructure for BindImageMemoryInfo
impl TaggedStructure for BindImageMemoryInfo
const STRUCTURE_TYPE: StructureType = StructureType::BIND_IMAGE_MEMORY_INFO
impl 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