[][src]Struct openxr::Space

pub struct Space { /* fields omitted */ }

Methods

impl Space[src]

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

Take ownership of an existing reference space handle

Safety

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

pub unsafe fn action_from_raw(action: Action<Posef>, handle: Space) -> Self[src]

Take ownership of an existing action space handle

Safety

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

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

Access the raw swapchain handle

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

Access the Instance self is descended from

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

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

pub fn locate(&self, base: &Space, time: Time) -> Result<SpaceRelation>[src]

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

Trait Implementations

impl Drop for Space[src]

Auto Trait Implementations

impl Send for Space

impl Sync for Space

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.