pub struct BodyTrackingCalibrationStateMETA(/* private fields */);Expand description
Implementations§
Source§impl BodyTrackingCalibrationStateMETA
impl BodyTrackingCalibrationStateMETA
Sourcepub const VALID: BodyTrackingCalibrationStateMETA
pub const VALID: BodyTrackingCalibrationStateMETA
Valid calibration, body tracking expected to be stable.
Sourcepub const CALIBRATING: BodyTrackingCalibrationStateMETA
pub const CALIBRATING: BodyTrackingCalibrationStateMETA
Calibration is in progress, body joint poses from XR_FB_body_tracking are valid to read and internally consistent within a single call, but may: be more variable than normal, shifting dramatically before calibration ends.
Sourcepub const INVALID: BodyTrackingCalibrationStateMETA
pub const INVALID: BodyTrackingCalibrationStateMETA
Calibration is invalid, accessing the body joint poses from XR_FB_body_tracking is defined behavior but their contents are unspecified. Tracking data may: be read but must: not be interpreted as body tracking poses.
pub fn from_raw(x: i32) -> Self
pub fn into_raw(self) -> i32
Trait Implementations§
Source§impl Clone for BodyTrackingCalibrationStateMETA
impl Clone for BodyTrackingCalibrationStateMETA
Source§fn clone(&self) -> BodyTrackingCalibrationStateMETA
fn clone(&self) -> BodyTrackingCalibrationStateMETA
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl PartialEq for BodyTrackingCalibrationStateMETA
impl PartialEq for BodyTrackingCalibrationStateMETA
Source§fn eq(&self, other: &BodyTrackingCalibrationStateMETA) -> bool
fn eq(&self, other: &BodyTrackingCalibrationStateMETA) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for BodyTrackingCalibrationStateMETA
impl Eq for BodyTrackingCalibrationStateMETA
impl StructuralPartialEq for BodyTrackingCalibrationStateMETA
Auto Trait Implementations§
impl Freeze for BodyTrackingCalibrationStateMETA
impl RefUnwindSafe for BodyTrackingCalibrationStateMETA
impl Send for BodyTrackingCalibrationStateMETA
impl Sync for BodyTrackingCalibrationStateMETA
impl Unpin for BodyTrackingCalibrationStateMETA
impl UnwindSafe for BodyTrackingCalibrationStateMETA
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