[][src]Struct ash::vk::EventCreateFlags

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

Implementations

impl EventCreateFlags[src]

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

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

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

Returns whether other is a subset of self

Trait Implementations

impl BitAnd<EventCreateFlags> for EventCreateFlags[src]

type Output = EventCreateFlags

The resulting type after applying the & operator.

impl BitAndAssign<EventCreateFlags> for EventCreateFlags[src]

impl BitOr<EventCreateFlags> for EventCreateFlags[src]

type Output = EventCreateFlags

The resulting type after applying the | operator.

impl BitOrAssign<EventCreateFlags> for EventCreateFlags[src]

impl BitXor<EventCreateFlags> for EventCreateFlags[src]

type Output = EventCreateFlags

The resulting type after applying the ^ operator.

impl BitXorAssign<EventCreateFlags> for EventCreateFlags[src]

impl Clone for EventCreateFlags[src]

impl Copy for EventCreateFlags[src]

impl Debug for EventCreateFlags[src]

impl Default for EventCreateFlags[src]

impl Eq for EventCreateFlags[src]

impl Hash for EventCreateFlags[src]

impl Not for EventCreateFlags[src]

type Output = EventCreateFlags

The resulting type after applying the ! operator.

impl Ord for EventCreateFlags[src]

impl PartialEq<EventCreateFlags> for EventCreateFlags[src]

impl PartialOrd<EventCreateFlags> for EventCreateFlags[src]

impl StructuralEq for EventCreateFlags[src]

impl StructuralPartialEq for EventCreateFlags[src]

impl Sub<EventCreateFlags> for EventCreateFlags[src]

type Output = EventCreateFlags

The resulting type after applying the - operator.

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