Struct ash::vk::definitions::BindImageMemoryInfo
source · #[repr(C)]pub struct BindImageMemoryInfo<'a> {
pub s_type: StructureType,
pub p_next: *const c_void,
pub image: Image,
pub memory: DeviceMemory,
pub memory_offset: DeviceSize,
pub _marker: PhantomData<&'a ()>,
}
Expand description
Fields§
§s_type: StructureType
§p_next: *const c_void
§image: Image
§memory: DeviceMemory
§memory_offset: DeviceSize
§_marker: PhantomData<&'a ()>
Implementations§
source§impl<'a> BindImageMemoryInfo<'a>
impl<'a> BindImageMemoryInfo<'a>
pub fn image(self, image: Image) -> Self
pub fn memory(self, memory: DeviceMemory) -> Self
pub fn memory_offset(self, memory_offset: DeviceSize) -> Self
sourcepub fn push_next<T: ExtendsBindImageMemoryInfo + ?Sized>(
self,
next: &'a mut T,
) -> Self
pub fn push_next<T: ExtendsBindImageMemoryInfo + ?Sized>( self, next: &'a mut T, ) -> Self
Prepends the given extension struct between the root and the first pointer. This
method only exists on structs that can be passed to a function directly. Only
valid extension structs can be pushed into the chain.
If the chain looks like A -> B -> C
, and you call x.push_next(&mut D)
, then the
chain will look like A -> D -> B -> C
.
Trait Implementations§
source§impl<'a> Clone for BindImageMemoryInfo<'a>
impl<'a> Clone for BindImageMemoryInfo<'a>
source§fn clone(&self) -> BindImageMemoryInfo<'a>
fn clone(&self) -> BindImageMemoryInfo<'a>
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<'a> Debug for BindImageMemoryInfo<'a>
impl<'a> Debug for BindImageMemoryInfo<'a>
source§impl Default for BindImageMemoryInfo<'_>
impl Default for BindImageMemoryInfo<'_>
source§impl<'a> TaggedStructure for BindImageMemoryInfo<'a>
impl<'a> TaggedStructure for BindImageMemoryInfo<'a>
const STRUCTURE_TYPE: StructureType = StructureType::BIND_IMAGE_MEMORY_INFO
impl<'a> Copy for BindImageMemoryInfo<'a>
impl Send for BindImageMemoryInfo<'_>
impl Sync for BindImageMemoryInfo<'_>
Auto Trait Implementations§
impl<'a> Freeze for BindImageMemoryInfo<'a>
impl<'a> RefUnwindSafe for BindImageMemoryInfo<'a>
impl<'a> Unpin for BindImageMemoryInfo<'a>
impl<'a> UnwindSafe for BindImageMemoryInfo<'a>
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