[][src]Struct ash::vk::CommandPoolResetFlags

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

Implementations

impl CommandPoolResetFlags[src]

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

pub const fn all() -> CommandPoolResetFlags[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: CommandPoolResetFlags) -> bool[src]

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

Returns whether other is a subset of self

impl CommandPoolResetFlags[src]

pub const RELEASE_RESOURCES: Self[src]

Release resources owned by the pool

Trait Implementations

impl BitAnd<CommandPoolResetFlags> for CommandPoolResetFlags[src]

type Output = CommandPoolResetFlags

The resulting type after applying the & operator.

impl BitAndAssign<CommandPoolResetFlags> for CommandPoolResetFlags[src]

impl BitOr<CommandPoolResetFlags> for CommandPoolResetFlags[src]

type Output = CommandPoolResetFlags

The resulting type after applying the | operator.

impl BitOrAssign<CommandPoolResetFlags> for CommandPoolResetFlags[src]

impl BitXor<CommandPoolResetFlags> for CommandPoolResetFlags[src]

type Output = CommandPoolResetFlags

The resulting type after applying the ^ operator.

impl BitXorAssign<CommandPoolResetFlags> for CommandPoolResetFlags[src]

impl Clone for CommandPoolResetFlags[src]

impl Copy for CommandPoolResetFlags[src]

impl Debug for CommandPoolResetFlags[src]

impl Default for CommandPoolResetFlags[src]

impl Eq for CommandPoolResetFlags[src]

impl Hash for CommandPoolResetFlags[src]

impl Not for CommandPoolResetFlags[src]

type Output = CommandPoolResetFlags

The resulting type after applying the ! operator.

impl Ord for CommandPoolResetFlags[src]

impl PartialEq<CommandPoolResetFlags> for CommandPoolResetFlags[src]

impl PartialOrd<CommandPoolResetFlags> for CommandPoolResetFlags[src]

impl StructuralEq for CommandPoolResetFlags[src]

impl StructuralPartialEq for CommandPoolResetFlags[src]

impl Sub<CommandPoolResetFlags> for CommandPoolResetFlags[src]

type Output = CommandPoolResetFlags

The resulting type after applying the - operator.

impl SubAssign<CommandPoolResetFlags> for CommandPoolResetFlags[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.