[][src]Struct openxr_sys::SwapchainCreateFlags

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

Implementations

impl SwapchainCreateFlags[src]

pub const PROTECTED_CONTENT: SwapchainCreateFlags[src]

Content will be protected from CPU access

pub const STATIC_IMAGE: SwapchainCreateFlags[src]

Only one image will be acquired from this swapchain over its lifetime

impl SwapchainCreateFlags[src]

pub const EMPTY: Self[src]

pub fn from_raw(x: u64) -> Self[src]

pub fn into_raw(self) -> u64[src]

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

pub fn intersects(self, other: SwapchainCreateFlags) -> bool[src]

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

Returns whether other is a subset of self

Trait Implementations

impl BitAnd<SwapchainCreateFlags> for SwapchainCreateFlags[src]

type Output = SwapchainCreateFlags

The resulting type after applying the & operator.

impl BitAndAssign<SwapchainCreateFlags> for SwapchainCreateFlags[src]

impl BitOr<SwapchainCreateFlags> for SwapchainCreateFlags[src]

type Output = SwapchainCreateFlags

The resulting type after applying the | operator.

impl BitOrAssign<SwapchainCreateFlags> for SwapchainCreateFlags[src]

impl BitXor<SwapchainCreateFlags> for SwapchainCreateFlags[src]

type Output = SwapchainCreateFlags

The resulting type after applying the ^ operator.

impl BitXorAssign<SwapchainCreateFlags> for SwapchainCreateFlags[src]

impl Clone for SwapchainCreateFlags[src]

impl Copy for SwapchainCreateFlags[src]

impl Debug for SwapchainCreateFlags[src]

impl Default for SwapchainCreateFlags[src]

impl Eq for SwapchainCreateFlags[src]

impl Not for SwapchainCreateFlags[src]

type Output = SwapchainCreateFlags

The resulting type after applying the ! operator.

impl PartialEq<SwapchainCreateFlags> for SwapchainCreateFlags[src]

impl StructuralEq for SwapchainCreateFlags[src]

impl StructuralPartialEq for SwapchainCreateFlags[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.