[][src]Struct ash::vk::CommandBufferUsageFlags

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

Implementations

impl CommandBufferUsageFlags[src]

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

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

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

Returns whether other is a subset of self

impl CommandBufferUsageFlags[src]

pub const ONE_TIME_SUBMIT: Self[src]

pub const RENDER_PASS_CONTINUE: Self[src]

pub const SIMULTANEOUS_USE: Self[src]

Command buffer may be submitted/executed more than once simultaneously

Trait Implementations

impl BitAnd<CommandBufferUsageFlags> for CommandBufferUsageFlags[src]

type Output = CommandBufferUsageFlags

The resulting type after applying the & operator.

impl BitAndAssign<CommandBufferUsageFlags> for CommandBufferUsageFlags[src]

impl BitOr<CommandBufferUsageFlags> for CommandBufferUsageFlags[src]

type Output = CommandBufferUsageFlags

The resulting type after applying the | operator.

impl BitOrAssign<CommandBufferUsageFlags> for CommandBufferUsageFlags[src]

impl BitXor<CommandBufferUsageFlags> for CommandBufferUsageFlags[src]

type Output = CommandBufferUsageFlags

The resulting type after applying the ^ operator.

impl BitXorAssign<CommandBufferUsageFlags> for CommandBufferUsageFlags[src]

impl Clone for CommandBufferUsageFlags[src]

impl Copy for CommandBufferUsageFlags[src]

impl Debug for CommandBufferUsageFlags[src]

impl Default for CommandBufferUsageFlags[src]

impl Eq for CommandBufferUsageFlags[src]

impl Hash for CommandBufferUsageFlags[src]

impl Not for CommandBufferUsageFlags[src]

type Output = CommandBufferUsageFlags

The resulting type after applying the ! operator.

impl Ord for CommandBufferUsageFlags[src]

impl PartialEq<CommandBufferUsageFlags> for CommandBufferUsageFlags[src]

impl PartialOrd<CommandBufferUsageFlags> for CommandBufferUsageFlags[src]

impl StructuralEq for CommandBufferUsageFlags[src]

impl StructuralPartialEq for CommandBufferUsageFlags[src]

impl Sub<CommandBufferUsageFlags> for CommandBufferUsageFlags[src]

type Output = CommandBufferUsageFlags

The resulting type after applying the - operator.

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