[][src]Struct openxr::Action

pub struct Action<T: ActionTy> { /* fields omitted */ }

Methods

impl<T: ActionTy> Action<T>[src]

pub unsafe fn from_raw(set: ActionSet, handle: Action) -> Self[src]

Take ownership of an existing action handle

Safety

handle must be a valid action handle associated with set.

pub fn as_raw(&self) -> Action[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 Action, if XR_EXT_debug_utils is loaded

pub fn bound_sources<G: Graphics>(
    &self,
    session: &Session<G>
) -> Result<Vec<Path>>
[src]

Input sources currently bound to this action

impl<T: ActionInput> Action<T>[src]

pub fn state<G: Graphics>(
    &self,
    session: &Session<G>,
    subaction_path: Path
) -> Result<ActionState<T>>
[src]

Retrieve the current state

impl Action<Posef>[src]

pub fn create_space<G: Graphics>(
    &self,
    session: Session<G>,
    subaction_path: Path,
    pose_in_action_space: Posef
) -> Result<Space>
[src]

Creates a Space relative to this action

pub fn is_active<G: Graphics>(
    &self,
    session: &Session<G>,
    subaction_path: Path
) -> Result<bool>
[src]

impl Action<Haptic>[src]

pub fn apply_feedback<G: Graphics>(
    &self,
    session: &Session<G>,
    subaction_path: Path,
    event: &HapticBase
) -> Result<()>
[src]

pub fn stop_feedback<G: Graphics>(
    &self,
    session: &Session<G>,
    subaction_path: Path
) -> Result<()>
[src]

Trait Implementations

impl<T: ActionTy> Clone for Action<T>[src]

Auto Trait Implementations

impl<T> Send for Action<T> where
    T: Send

impl<T> Sync for Action<T> where
    T: Sync

impl<T> Unpin for Action<T> where
    T: Unpin

impl<T> UnwindSafe for Action<T> where
    T: UnwindSafe

impl<T> RefUnwindSafe for Action<T> where
    T: RefUnwindSafe

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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