[][src]Struct vulkanalia::vk::AccessFlags

#[repr(transparent)]pub struct AccessFlags { /* fields omitted */ }

Implementations

impl AccessFlags[src]

pub const INDIRECT_COMMAND_READ: AccessFlags[src]

pub const INDEX_READ: AccessFlags[src]

pub const VERTEX_ATTRIBUTE_READ: AccessFlags[src]

pub const UNIFORM_READ: AccessFlags[src]

pub const INPUT_ATTACHMENT_READ: AccessFlags[src]

pub const SHADER_READ: AccessFlags[src]

pub const SHADER_WRITE: AccessFlags[src]

pub const COLOR_ATTACHMENT_READ: AccessFlags[src]

pub const COLOR_ATTACHMENT_WRITE: AccessFlags[src]

pub const DEPTH_STENCIL_ATTACHMENT_READ: AccessFlags[src]

pub const DEPTH_STENCIL_ATTACHMENT_WRITE: AccessFlags[src]

pub const TRANSFER_READ: AccessFlags[src]

pub const TRANSFER_WRITE: AccessFlags[src]

pub const HOST_READ: AccessFlags[src]

pub const HOST_WRITE: AccessFlags[src]

pub const MEMORY_READ: AccessFlags[src]

pub const MEMORY_WRITE: AccessFlags[src]

pub const COMMAND_PREPROCESS_READ_NV: AccessFlags[src]

pub const COMMAND_PREPROCESS_WRITE_NV: AccessFlags[src]

pub const COLOR_ATTACHMENT_READ_NONCOHERENT_EXT: AccessFlags[src]

pub const CONDITIONAL_RENDERING_READ_EXT: AccessFlags[src]

pub const ACCELERATION_STRUCTURE_READ_KHR: AccessFlags[src]

pub const ACCELERATION_STRUCTURE_WRITE_KHR: AccessFlags[src]

pub const SHADING_RATE_IMAGE_READ_NV: AccessFlags[src]

pub const FRAGMENT_DENSITY_MAP_READ_EXT: AccessFlags[src]

pub const TRANSFORM_FEEDBACK_WRITE_EXT: AccessFlags[src]

pub const TRANSFORM_FEEDBACK_COUNTER_READ_EXT: AccessFlags[src]

pub const TRANSFORM_FEEDBACK_COUNTER_WRITE_EXT: AccessFlags[src]

pub const RESERVED_28_KHR: AccessFlags[src]

pub const RESERVED_29_KHR: AccessFlags[src]

pub const RESERVED_30_KHR: AccessFlags[src]

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

Returns an empty set of flags

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

Returns the set containing all flags.

pub const fn bits(&self) -> u32[src]

Returns the raw value of the flags currently stored.

pub fn from_bits(bits: u32) -> Option<AccessFlags>[src]

Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.

pub const fn from_bits_truncate(bits: u32) -> AccessFlags[src]

Convert from underlying bit representation, dropping any bits that do not correspond to flags.

pub const unsafe fn from_bits_unchecked(bits: u32) -> AccessFlags[src]

Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).

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

Returns true if no flags are currently stored.

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

Returns true if all flags are currently set.

pub const fn intersects(&self, other: AccessFlags) -> bool[src]

Returns true if there are flags common to both self and other.

pub const fn contains(&self, other: AccessFlags) -> bool[src]

Returns true all of the flags in other are contained within self.

pub fn insert(&mut self, other: AccessFlags)[src]

Inserts the specified flags in-place.

pub fn remove(&mut self, other: AccessFlags)[src]

Removes the specified flags in-place.

pub fn toggle(&mut self, other: AccessFlags)[src]

Toggles the specified flags in-place.

pub fn set(&mut self, other: AccessFlags, value: bool)[src]

Inserts or removes the specified flags depending on the passed value.

Trait Implementations

impl Binary for AccessFlags[src]

impl BitAnd<AccessFlags> for AccessFlags[src]

type Output = AccessFlags

The resulting type after applying the & operator.

pub fn bitand(self, other: AccessFlags) -> AccessFlags[src]

Returns the intersection between the two sets of flags.

impl BitAndAssign<AccessFlags> for AccessFlags[src]

pub fn bitand_assign(&mut self, other: AccessFlags)[src]

Disables all flags disabled in the set.

impl BitOr<AccessFlags> for AccessFlags[src]

type Output = AccessFlags

The resulting type after applying the | operator.

pub fn bitor(self, other: AccessFlags) -> AccessFlags[src]

Returns the union of the two sets of flags.

impl BitOrAssign<AccessFlags> for AccessFlags[src]

pub fn bitor_assign(&mut self, other: AccessFlags)[src]

Adds the set of flags.

impl BitXor<AccessFlags> for AccessFlags[src]

type Output = AccessFlags

The resulting type after applying the ^ operator.

pub fn bitxor(self, other: AccessFlags) -> AccessFlags[src]

Returns the left flags, but with all the right flags toggled.

impl BitXorAssign<AccessFlags> for AccessFlags[src]

pub fn bitxor_assign(&mut self, other: AccessFlags)[src]

Toggles the set of flags.

impl Clone for AccessFlags[src]

impl Copy for AccessFlags[src]

impl Debug for AccessFlags[src]

impl Default for AccessFlags[src]

impl Eq for AccessFlags[src]

impl Extend<AccessFlags> for AccessFlags[src]

impl FromIterator<AccessFlags> for AccessFlags[src]

impl Hash for AccessFlags[src]

impl LowerHex for AccessFlags[src]

impl Not for AccessFlags[src]

type Output = AccessFlags

The resulting type after applying the ! operator.

pub fn not(self) -> AccessFlags[src]

Returns the complement of this set of flags.

impl Octal for AccessFlags[src]

impl Ord for AccessFlags[src]

impl PartialEq<AccessFlags> for AccessFlags[src]

impl PartialOrd<AccessFlags> for AccessFlags[src]

impl StructuralEq for AccessFlags[src]

impl StructuralPartialEq for AccessFlags[src]

impl Sub<AccessFlags> for AccessFlags[src]

type Output = AccessFlags

The resulting type after applying the - operator.

pub fn sub(self, other: AccessFlags) -> AccessFlags[src]

Returns the set difference of the two sets of flags.

impl SubAssign<AccessFlags> for AccessFlags[src]

pub fn sub_assign(&mut self, other: AccessFlags)[src]

Disables all flags enabled in the set.

impl UpperHex for AccessFlags[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.