Struct openxr::Space

source ·
pub struct Space { /* private fields */ }

Implementations§

source§

impl Space

source

pub unsafe fn reference_from_raw<G>(session: Session<G>, handle: Space) -> Self

Take ownership of an existing reference space handle

§Safety

handle must be a valid reference space handle associated with session.

source

pub unsafe fn action_from_raw<G>( action: Action<Posef>, session: Session<G>, handle: Space ) -> Self

Take ownership of an existing action space handle

§Safety

handle must be a valid action space handle for action and associated with session.

source

pub fn as_raw(&self) -> Space

Access the raw swapchain handle

source

pub fn instance(&self) -> &Instance

Access the Instance self is descended from

source

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

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

source

pub fn locate(&self, base: &Space, time: Time) -> Result<SpaceLocation>

Determine the location of a space relative to a base space at a specified time, if currently known by the runtime.

source

pub fn relate( &self, base: &Space, time: Time ) -> Result<(SpaceLocation, SpaceVelocity)>

Determine the location and velocity of a space relative to a base space at a specified time, if currently known by the runtime.

source

pub fn locate_hand_joints( &self, tracker: &HandTracker, time: Time ) -> Result<Option<HandJointLocations>>

Determine the locations of the joints of a hand tracker relative to this space at a specified time, if currently known by the runtime.

XR_EXT_hand_tracking must be enabled.

source

pub fn relate_hand_joints( &self, tracker: &HandTracker, time: Time ) -> Result<Option<(HandJointLocations, HandJointVelocities)>>

Determine the locations and velocities of the joints of a hand tracker relative to this space at a specified time, if currently known by the runtime.

XR_EXT_hand_tracking must be enabled.

Trait Implementations§

source§

impl Drop for Space

source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

§

impl !RefUnwindSafe for Space

§

impl Send for Space

§

impl Sync for Space

§

impl Unpin for Space

§

impl !UnwindSafe for Space

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.