[][src]Struct ash::vk::BufferCreateFlags

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

Implementations

impl BufferCreateFlags[src]

pub const fn empty() -> BufferCreateFlags[src]

pub const fn all() -> BufferCreateFlags[src]

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

pub const 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: BufferCreateFlags) -> bool[src]

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

Returns whether other is a subset of self

impl BufferCreateFlags[src]

pub const SPARSE_BINDING: Self[src]

Buffer should support sparse backing

pub const SPARSE_RESIDENCY: Self[src]

Buffer should support sparse backing with partial residency

pub const SPARSE_ALIASED: Self[src]

Buffer should support constent data access to physical memory ranges mapped into multiple locations of sparse buffers

impl BufferCreateFlags[src]

Generated from 'VK_EXT_buffer_device_address'

impl BufferCreateFlags[src]

Generated from 'VK_KHR_buffer_device_address'

impl BufferCreateFlags[src]

Generated from 'VK_VERSION_1_1'

pub const PROTECTED: Self[src]

impl BufferCreateFlags[src]

Generated from 'VK_VERSION_1_2'

Trait Implementations

impl BitAnd<BufferCreateFlags> for BufferCreateFlags[src]

type Output = BufferCreateFlags

The resulting type after applying the & operator.

impl BitAndAssign<BufferCreateFlags> for BufferCreateFlags[src]

impl BitOr<BufferCreateFlags> for BufferCreateFlags[src]

type Output = BufferCreateFlags

The resulting type after applying the | operator.

impl BitOrAssign<BufferCreateFlags> for BufferCreateFlags[src]

impl BitXor<BufferCreateFlags> for BufferCreateFlags[src]

type Output = BufferCreateFlags

The resulting type after applying the ^ operator.

impl BitXorAssign<BufferCreateFlags> for BufferCreateFlags[src]

impl Clone for BufferCreateFlags[src]

impl Copy for BufferCreateFlags[src]

impl Debug for BufferCreateFlags[src]

impl Default for BufferCreateFlags[src]

impl Eq for BufferCreateFlags[src]

impl Hash for BufferCreateFlags[src]

impl Not for BufferCreateFlags[src]

type Output = BufferCreateFlags

The resulting type after applying the ! operator.

impl Ord for BufferCreateFlags[src]

impl PartialEq<BufferCreateFlags> for BufferCreateFlags[src]

impl PartialOrd<BufferCreateFlags> for BufferCreateFlags[src]

impl StructuralEq for BufferCreateFlags[src]

impl StructuralPartialEq for BufferCreateFlags[src]

impl Sub<BufferCreateFlags> for BufferCreateFlags[src]

type Output = BufferCreateFlags

The resulting type after applying the - operator.

impl SubAssign<BufferCreateFlags> for BufferCreateFlags[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.