#[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: StructureTypep_next: *const c_voidflags: ImageViewCreateFlagsimage: Imageview_type: ImageViewTypeformat: Formatcomponents: ComponentMappingsubresource_range: ImageSubresourceRangeImplementations
sourceimpl ImageViewCreateInfo
impl ImageViewCreateInfo
pub fn builder<'a>() -> ImageViewCreateInfoBuilder<'a>
Trait Implementations
sourceimpl Clone for ImageViewCreateInfo
impl Clone for ImageViewCreateInfo
sourcefn clone(&self) -> ImageViewCreateInfo
fn clone(&self) -> ImageViewCreateInfo
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for ImageViewCreateInfo
impl Debug for ImageViewCreateInfo
sourceimpl Default for ImageViewCreateInfo
impl Default for ImageViewCreateInfo
sourcefn default() -> ImageViewCreateInfo
fn default() -> ImageViewCreateInfo
Returns the “default value” for a type. Read more
impl Copy for ImageViewCreateInfo
Auto Trait Implementations
impl RefUnwindSafe for ImageViewCreateInfo
impl !Send for ImageViewCreateInfo
impl !Sync for ImageViewCreateInfo
impl Unpin for ImageViewCreateInfo
impl UnwindSafe for ImageViewCreateInfo
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more