Struct 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 Freeze for Space

§

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>,

Source§

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>,

Source§

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.