[][src]Struct ash::vk::ImageCreateFlags

#[repr(transparent)]
pub struct ImageCreateFlags(_);

https://www.khronos.org/registry/vulkan/specs/1.1-extensions/man/html/VkImageCreateFlagBits.html

Methods

impl ImageCreateFlags[src]

pub fn empty() -> ImageCreateFlags[src]

pub fn all() -> ImageCreateFlags[src]

pub fn from_raw(x: Flags) -> Self[src]

pub fn as_raw(self) -> Flags[src]

pub fn is_empty(self) -> bool[src]

pub fn is_all(self) -> bool[src]

pub fn intersects(self, other: ImageCreateFlags) -> bool[src]

pub fn contains(self, other: ImageCreateFlags) -> bool[src]

Returns whether other is a subset of self

impl ImageCreateFlags[src]

pub const SPARSE_BINDING: Self[src]

Image should support sparse backing

pub const SPARSE_RESIDENCY: Self[src]

Image should support sparse backing with partial residency

pub const SPARSE_ALIASED: Self[src]

Image should support constent data access to physical memory ranges mapped into multiple locations of sparse images

pub const MUTABLE_FORMAT: Self[src]

Allows image views to have different format than the base image

pub const CUBE_COMPATIBLE: Self[src]

Allows creating image views with cube type from the created image

impl ImageCreateFlags[src]

Generated from 'VK_NV_corner_sampled_image'

pub const CORNER_SAMPLED_NV: Self[src]

impl ImageCreateFlags[src]

Generated from 'VK_EXT_sample_locations'

pub const SAMPLE_LOCATIONS_COMPATIBLE_DEPTH_EXT: Self[src]

impl ImageCreateFlags[src]

Generated from 'VK_EXT_fragment_density_map'

pub const SUBSAMPLED_EXT: Self[src]

impl ImageCreateFlags[src]

Generated from 'VK_VERSION_1_1'

pub const ALIAS: Self[src]

impl ImageCreateFlags[src]

Generated from 'VK_VERSION_1_1'

pub const SPLIT_INSTANCE_BIND_REGIONS: Self[src]

impl ImageCreateFlags[src]

Generated from 'VK_VERSION_1_1'

pub const TYPE_2D_ARRAY_COMPATIBLE: Self[src]

impl ImageCreateFlags[src]

Generated from 'VK_VERSION_1_1'

pub const BLOCK_TEXEL_VIEW_COMPATIBLE: Self[src]

impl ImageCreateFlags[src]

Generated from 'VK_VERSION_1_1'

pub const EXTENDED_USAGE: Self[src]

impl ImageCreateFlags[src]

Generated from 'VK_VERSION_1_1'

pub const PROTECTED: Self[src]

impl ImageCreateFlags[src]

Generated from 'VK_VERSION_1_1'

pub const DISJOINT: Self[src]

Trait Implementations

impl Copy for ImageCreateFlags[src]

impl Default for ImageCreateFlags[src]

impl Eq for ImageCreateFlags[src]

impl Clone for ImageCreateFlags[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl PartialOrd<ImageCreateFlags> for ImageCreateFlags[src]

impl PartialEq<ImageCreateFlags> for ImageCreateFlags[src]

impl Ord for ImageCreateFlags[src]

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl Hash for ImageCreateFlags[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for ImageCreateFlags[src]

impl Sub<ImageCreateFlags> for ImageCreateFlags[src]

type Output = ImageCreateFlags

The resulting type after applying the - operator.

impl SubAssign<ImageCreateFlags> for ImageCreateFlags[src]

impl Not for ImageCreateFlags[src]

type Output = ImageCreateFlags

The resulting type after applying the ! operator.

impl BitAnd<ImageCreateFlags> for ImageCreateFlags[src]

type Output = ImageCreateFlags

The resulting type after applying the & operator.

impl BitOr<ImageCreateFlags> for ImageCreateFlags[src]

type Output = ImageCreateFlags

The resulting type after applying the | operator.

impl BitXor<ImageCreateFlags> for ImageCreateFlags[src]

type Output = ImageCreateFlags

The resulting type after applying the ^ operator.

impl BitAndAssign<ImageCreateFlags> for ImageCreateFlags[src]

impl BitOrAssign<ImageCreateFlags> for ImageCreateFlags[src]

impl BitXorAssign<ImageCreateFlags> for ImageCreateFlags[src]

Auto Trait Implementations

impl Unpin for ImageCreateFlags

impl Sync for ImageCreateFlags

impl Send for ImageCreateFlags

impl UnwindSafe for ImageCreateFlags

impl RefUnwindSafe for ImageCreateFlags

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]