[][src]Struct openxr_sys::InputSourceLocalizedNameFlags

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

Methods

impl InputSourceLocalizedNameFlags[src]

pub const USER_PATH: InputSourceLocalizedNameFlags[src]

Asks for the part of the string which indicates the top level user path the source represents

pub const INTERACTION_PROFILE: InputSourceLocalizedNameFlags[src]

Asks for the part of the string which represents the interaction profile of the source

pub const COMPONENT: InputSourceLocalizedNameFlags[src]

Asks for the part of the string which represents the component on the device which needs to be interacted with

impl InputSourceLocalizedNameFlags[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: InputSourceLocalizedNameFlags) -> bool[src]

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

Returns whether other is a subset of self

Trait Implementations

impl Clone for InputSourceLocalizedNameFlags[src]

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

Performs copy-assignment from source. Read more

impl Default for InputSourceLocalizedNameFlags[src]

impl PartialEq<InputSourceLocalizedNameFlags> for InputSourceLocalizedNameFlags[src]

impl Copy for InputSourceLocalizedNameFlags[src]

impl Eq for InputSourceLocalizedNameFlags[src]

impl Debug for InputSourceLocalizedNameFlags[src]

impl Not for InputSourceLocalizedNameFlags[src]

type Output = InputSourceLocalizedNameFlags

The resulting type after applying the ! operator.

impl BitAnd<InputSourceLocalizedNameFlags> for InputSourceLocalizedNameFlags[src]

type Output = InputSourceLocalizedNameFlags

The resulting type after applying the & operator.

impl BitOr<InputSourceLocalizedNameFlags> for InputSourceLocalizedNameFlags[src]

type Output = InputSourceLocalizedNameFlags

The resulting type after applying the | operator.

impl BitXor<InputSourceLocalizedNameFlags> for InputSourceLocalizedNameFlags[src]

type Output = InputSourceLocalizedNameFlags

The resulting type after applying the ^ operator.

impl BitAndAssign<InputSourceLocalizedNameFlags> for InputSourceLocalizedNameFlags[src]

impl BitOrAssign<InputSourceLocalizedNameFlags> for InputSourceLocalizedNameFlags[src]

impl BitXorAssign<InputSourceLocalizedNameFlags> for InputSourceLocalizedNameFlags[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

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

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.

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

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

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

impl<T> Scalar for T where
    T: Copy + PartialEq<T> + Any + Debug
[src]

fn is<T>() -> bool where
    T: Scalar
[src]

Tests if Self the same as the type T Read more

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>,