[][src]Struct openxr::SpaceVelocityFlags

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

Methods

impl SpaceVelocityFlags[src]

pub const LINEAR_VALID: SpaceVelocityFlags[src]

Indicates validity of linearVelocity member

pub const ANGULAR_VALID: SpaceVelocityFlags[src]

Indicates validity of angularVelocity member

impl SpaceVelocityFlags[src]

pub const EMPTY: SpaceVelocityFlags[src]

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

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

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

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

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

Returns whether other is a subset of self

Trait Implementations

impl BitAnd<SpaceVelocityFlags> for SpaceVelocityFlags[src]

type Output = SpaceVelocityFlags

The resulting type after applying the & operator.

impl BitAndAssign<SpaceVelocityFlags> for SpaceVelocityFlags[src]

impl BitOr<SpaceVelocityFlags> for SpaceVelocityFlags[src]

type Output = SpaceVelocityFlags

The resulting type after applying the | operator.

impl BitOrAssign<SpaceVelocityFlags> for SpaceVelocityFlags[src]

impl BitXor<SpaceVelocityFlags> for SpaceVelocityFlags[src]

type Output = SpaceVelocityFlags

The resulting type after applying the ^ operator.

impl BitXorAssign<SpaceVelocityFlags> for SpaceVelocityFlags[src]

impl Clone for SpaceVelocityFlags[src]

impl Copy for SpaceVelocityFlags[src]

impl Debug for SpaceVelocityFlags[src]

impl Default for SpaceVelocityFlags[src]

impl Eq for SpaceVelocityFlags[src]

impl Not for SpaceVelocityFlags[src]

type Output = SpaceVelocityFlags

The resulting type after applying the ! operator.

impl PartialEq<SpaceVelocityFlags> for SpaceVelocityFlags[src]

impl StructuralEq for SpaceVelocityFlags[src]

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