#[repr(C)]pub struct ImageViewCreateInfo {
pub sType: StructureType,
pub pNext: *const c_void,
pub flags: ImageViewCreateFlags,
pub image: Image,
pub viewType: ImageViewType,
pub format: Format,
pub components: ComponentMapping,
pub subresourceRange: ImageSubresourceRange,
}
Fields§
§sType: StructureType
§pNext: *const c_void
§flags: ImageViewCreateFlags
§image: Image
§viewType: ImageViewType
§format: Format
§components: ComponentMapping
§subresourceRange: ImageSubresourceRange
Trait Implementations§
Source§impl Clone for ImageViewCreateInfo
impl Clone for ImageViewCreateInfo
Source§fn clone(&self) -> ImageViewCreateInfo
fn clone(&self) -> ImageViewCreateInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl 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