[][src]Struct openxr::SpaceLocationFlags

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

Implementations

impl SpaceLocationFlags[src]

pub const ORIENTATION_VALID: SpaceLocationFlags[src]

Indicates validity of orientation member

pub const POSITION_VALID: SpaceLocationFlags[src]

Indicates validity of position member

pub const ORIENTATION_TRACKED: SpaceLocationFlags[src]

Indicates whether pose member contains an actively tracked orientation

pub const POSITION_TRACKED: SpaceLocationFlags[src]

Indicates whether pose member contains an actively tracked position

impl SpaceLocationFlags[src]

pub const EMPTY: SpaceLocationFlags[src]

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

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

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

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

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

Returns whether other is a subset of self

Trait Implementations

impl BitAnd<SpaceLocationFlags> for SpaceLocationFlags[src]

type Output = SpaceLocationFlags

The resulting type after applying the & operator.

impl BitAndAssign<SpaceLocationFlags> for SpaceLocationFlags[src]

impl BitOr<SpaceLocationFlags> for SpaceLocationFlags[src]

type Output = SpaceLocationFlags

The resulting type after applying the | operator.

impl BitOrAssign<SpaceLocationFlags> for SpaceLocationFlags[src]

impl BitXor<SpaceLocationFlags> for SpaceLocationFlags[src]

type Output = SpaceLocationFlags

The resulting type after applying the ^ operator.

impl BitXorAssign<SpaceLocationFlags> for SpaceLocationFlags[src]

impl Clone for SpaceLocationFlags[src]

impl Copy for SpaceLocationFlags[src]

impl Debug for SpaceLocationFlags[src]

impl Default for SpaceLocationFlags[src]

impl Eq for SpaceLocationFlags[src]

impl Not for SpaceLocationFlags[src]

type Output = SpaceLocationFlags

The resulting type after applying the ! operator.

impl PartialEq<SpaceLocationFlags> for SpaceLocationFlags[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.