[][src]Struct lava::VkToolPurposeFlags

pub struct VkToolPurposeFlags {
    pub validation: bool,
    pub profiling: bool,
    pub tracing: bool,
    pub additional_features: bool,
    pub modifying_features: bool,
    pub debug_reporting: bool,
    pub debug_markers: bool,
}

Wrapper for VkToolPurposeFlagsEXT.

Use the macro VkToolPurposeFlags! as an alternative method to create a structure. For example, these two snippets return the same value:

VkToolPurposeFlags!(validation, profiling)
VkToolPurposeFlags {
    validation: true,
    profiling: true,
    ..VkToolPurposeFlags::none()
}

Fields

validation: boolprofiling: booltracing: booladditional_features: boolmodifying_features: booldebug_reporting: booldebug_markers: bool

Methods

impl VkToolPurposeFlags[src]

pub fn none() -> Self[src]

Return a structure with all flags to false.

pub fn all() -> Self[src]

Return a structure with all flags to true.

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

Return the numerical bit flags corresponding to the structure (as described in the Vulkan specs).

pub fn from_u32(value: u32) -> Self[src]

Create a structure corresponding to the specified numerical bit flags.

Trait Implementations

impl Clone for VkToolPurposeFlags[src]

impl Debug for VkToolPurposeFlags[src]

impl Default for VkToolPurposeFlags[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.