[][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(&self) -> Result<Vec<Path>>[src]

Input sources currently bound to this action

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

pub fn state(&self, subaction_paths: &[Path]) -> Result<ActionState<T>>[src]

Retrieve the current state

impl Action<Posef>[src]

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

Creates a Space relative to this action

impl Action<Haptic>[src]

pub fn apply_feedback(
    &self,
    subaction_paths: &[Path],
    event: &HapticBase
) -> Result<()>
[src]

pub fn stop_feedback(&self, subaction_paths: &[Path]) -> Result<()>[src]

Trait Implementations

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

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

Performs copy-assignment from source. Read more

Auto Trait Implementations

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

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

Blanket Implementations

impl<T, U> Into 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> 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>,