pub struct VkImageViewCreateFlags {
pub fragment_density_map_dynamic_ext: bool,
}
Expand description
Wrapper for VkImageViewCreateFlags.
Use the macro VkImageViewCreateFlags!
as an alternative method to create a structure. For example, these two snippets return the same value:
VkImageViewCreateFlags!(fragment_density_map_dynamic_ext)
VkImageViewCreateFlags {
fragment_density_map_dynamic_ext: true,
}
Fields§
§fragment_density_map_dynamic_ext: bool
Implementations§
Trait Implementations§
Source§impl Clone for VkImageViewCreateFlags
impl Clone for VkImageViewCreateFlags
Source§fn clone(&self) -> VkImageViewCreateFlags
fn clone(&self) -> VkImageViewCreateFlags
Returns a duplicate 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 VkImageViewCreateFlags
impl Debug for VkImageViewCreateFlags
Source§impl Default for VkImageViewCreateFlags
impl Default for VkImageViewCreateFlags
Source§fn default() -> VkImageViewCreateFlags
fn default() -> VkImageViewCreateFlags
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for VkImageViewCreateFlags
impl RefUnwindSafe for VkImageViewCreateFlags
impl Send for VkImageViewCreateFlags
impl Sync for VkImageViewCreateFlags
impl Unpin for VkImageViewCreateFlags
impl UnwindSafe for VkImageViewCreateFlags
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