Struct ash::vk::ImageViewCreateInfo
source · #[repr(C)]pub struct ImageViewCreateInfo {
pub s_type: StructureType,
pub p_next: *const c_void,
pub flags: ImageViewCreateFlags,
pub image: Image,
pub view_type: ImageViewType,
pub format: Format,
pub components: ComponentMapping,
pub subresource_range: ImageSubresourceRange,
}
Expand description
Fields§
§s_type: StructureType
§p_next: *const c_void
§flags: ImageViewCreateFlags
§image: Image
§view_type: ImageViewType
§format: Format
§components: ComponentMapping
§subresource_range: ImageSubresourceRange
Implementations§
source§impl ImageViewCreateInfo
impl ImageViewCreateInfo
pub fn builder<'a>() -> ImageViewCreateInfoBuilder<'a>
Trait Implementations§
source§impl Clone for ImageViewCreateInfo
impl Clone for ImageViewCreateInfo
source§fn clone(&self) -> ImageViewCreateInfo
fn clone(&self) -> ImageViewCreateInfo
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 ImageViewCreateInfo
impl Debug for ImageViewCreateInfo
source§impl Default for ImageViewCreateInfo
impl Default for ImageViewCreateInfo
source§impl TaggedStructure for ImageViewCreateInfo
impl TaggedStructure for ImageViewCreateInfo
const STRUCTURE_TYPE: StructureType = StructureType::IMAGE_VIEW_CREATE_INFO
impl Copy for ImageViewCreateInfo
Auto Trait Implementations§
impl Freeze for ImageViewCreateInfo
impl RefUnwindSafe for ImageViewCreateInfo
impl !Send for ImageViewCreateInfo
impl !Sync for ImageViewCreateInfo
impl Unpin for ImageViewCreateInfo
impl UnwindSafe for ImageViewCreateInfo
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