#[repr(u32)]pub enum gvr_property_type {
GVR_PROPERTY_TRACKING_FLOOR_HEIGHT = 1,
GVR_PROPERTY_RECENTER_TRANSFORM = 2,
GVR_PROPERTY_SAFETY_REGION = 3,
GVR_PROPERTY_SAFETY_CYLINDER_ENTER_RADIUS = 4,
GVR_PROPERTY_SAFETY_CYLINDER_EXIT_RADIUS = 5,
GVR_PROPERTY_TRACKING_STATUS = 6,
}Expand description
Property types exposed by the gvr_properties_get() API.
Variants§
GVR_PROPERTY_TRACKING_FLOOR_HEIGHT = 1
GVR_PROPERTY_RECENTER_TRANSFORM = 2
GVR_PROPERTY_SAFETY_REGION = 3
GVR_PROPERTY_SAFETY_CYLINDER_ENTER_RADIUS = 4
GVR_PROPERTY_SAFETY_CYLINDER_EXIT_RADIUS = 5
GVR_PROPERTY_TRACKING_STATUS = 6
Trait Implementations§
Source§impl Clone for gvr_property_type
impl Clone for gvr_property_type
Source§fn clone(&self) -> gvr_property_type
fn clone(&self) -> gvr_property_type
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for gvr_property_type
Source§impl Debug for gvr_property_type
impl Debug for gvr_property_type
impl Eq for gvr_property_type
Source§impl Hash for gvr_property_type
impl Hash for gvr_property_type
Source§impl PartialEq for gvr_property_type
impl PartialEq for gvr_property_type
Source§fn eq(&self, other: &gvr_property_type) -> bool
fn eq(&self, other: &gvr_property_type) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for gvr_property_type
Auto Trait Implementations§
impl Freeze for gvr_property_type
impl RefUnwindSafe for gvr_property_type
impl Send for gvr_property_type
impl Sync for gvr_property_type
impl Unpin for gvr_property_type
impl UnsafeUnpin for gvr_property_type
impl UnwindSafe for gvr_property_type
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more