[][src]Struct openxr_sys::SwapchainCreateFlags

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

Methods

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 Copy for SwapchainCreateFlags[src]

impl PartialEq<SwapchainCreateFlags> for SwapchainCreateFlags[src]

impl Default for SwapchainCreateFlags[src]

impl Clone for SwapchainCreateFlags[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for SwapchainCreateFlags[src]

impl Debug for SwapchainCreateFlags[src]

impl Not for SwapchainCreateFlags[src]

type Output = SwapchainCreateFlags

The resulting type after applying the ! operator.

impl BitAnd<SwapchainCreateFlags> for SwapchainCreateFlags[src]

type Output = SwapchainCreateFlags

The resulting type after applying the & operator.

impl BitOr<SwapchainCreateFlags> for SwapchainCreateFlags[src]

type Output = SwapchainCreateFlags

The resulting type after applying the | operator.

impl BitXor<SwapchainCreateFlags> for SwapchainCreateFlags[src]

type Output = SwapchainCreateFlags

The resulting type after applying the ^ operator.

impl BitAndAssign<SwapchainCreateFlags> for SwapchainCreateFlags[src]

impl BitOrAssign<SwapchainCreateFlags> for SwapchainCreateFlags[src]

impl BitXorAssign<SwapchainCreateFlags> for SwapchainCreateFlags[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.