pub struct TrackingStateANDROID(/* private fields */);Expand description
Implementations§
Source§impl TrackingStateANDROID
impl TrackingStateANDROID
Sourcepub const PAUSED: TrackingStateANDROID
pub const PAUSED: TrackingStateANDROID
Indicates that the trackable or anchor tracking is paused but may be resumed in the future.
Sourcepub const STOPPED: TrackingStateANDROID
pub const STOPPED: TrackingStateANDROID
Tracking has stopped on this Trackable and will never be resumed.
Sourcepub const TRACKING: TrackingStateANDROID
pub const TRACKING: TrackingStateANDROID
The object is currently tracked and its pose is current.
pub fn from_raw(x: i32) -> Self
pub fn into_raw(self) -> i32
Trait Implementations§
Source§impl Clone for TrackingStateANDROID
impl Clone for TrackingStateANDROID
Source§fn clone(&self) -> TrackingStateANDROID
fn clone(&self) -> TrackingStateANDROID
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 Debug for TrackingStateANDROID
impl Debug for TrackingStateANDROID
Source§impl Default for TrackingStateANDROID
impl Default for TrackingStateANDROID
Source§fn default() -> TrackingStateANDROID
fn default() -> TrackingStateANDROID
Returns the “default value” for a type. Read more
Source§impl PartialEq for TrackingStateANDROID
impl PartialEq for TrackingStateANDROID
impl Copy for TrackingStateANDROID
impl Eq for TrackingStateANDROID
impl StructuralPartialEq for TrackingStateANDROID
Auto Trait Implementations§
impl Freeze for TrackingStateANDROID
impl RefUnwindSafe for TrackingStateANDROID
impl Send for TrackingStateANDROID
impl Sync for TrackingStateANDROID
impl Unpin for TrackingStateANDROID
impl UnwindSafe for TrackingStateANDROID
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