[][src]Struct openxr::ActionSet

pub struct ActionSet { /* fields omitted */ }

Methods

impl ActionSet[src]

pub unsafe fn from_raw<G: Graphics>(
    session: Session<G>,
    handle: ActionSet
) -> Self
[src]

Take ownership of an existing action set handle

Safety

handle must be a valid action set handle associated with session.

pub fn as_raw(&self) -> ActionSet[src]

Access the raw swapchain handle

pub fn instance(&self) -> &Instance[src]

Access the Instance self is descended from

pub fn set_name(&mut self, name: &str) -> Result<()>[src]

Set the debug name of this ActionSet, if XR_EXT_debug_utils is loaded

pub fn create_action<T: ActionTy>(
    &self,
    name: &str,
    localized_name: &str,
    subaction_paths: &[Path]
) -> Result<Action<T>>
[src]

Create a new logical input action

Trait Implementations

impl<'a> From<&'a ActionSet> for ActiveActionSet<'a>[src]

Auto Trait Implementations

impl Send for ActionSet

impl Sync for ActionSet

Blanket Implementations

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

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.

impl<T> Same for T

type Output = T

Should always be Self

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