pub struct TrackableMarkerTrackingModeANDROID(/* private fields */);Expand description
Implementations§
Source§impl TrackableMarkerTrackingModeANDROID
impl TrackableMarkerTrackingModeANDROID
Sourcepub const DYNAMIC: TrackableMarkerTrackingModeANDROID
pub const DYNAMIC: TrackableMarkerTrackingModeANDROID
Tracking dynamic markers. This mode has the highest accuracy and works on moving and static markers, but also has the highest power consumption.
Sourcepub const STATIC: TrackableMarkerTrackingModeANDROID
pub const STATIC: TrackableMarkerTrackingModeANDROID
Tracking static markers. This mode is primarily useful for markers that are known to be static, which leads to less power consumption in comparison to the dynamic mode.
pub fn from_raw(x: i32) -> Self
pub fn into_raw(self) -> i32
Trait Implementations§
Source§impl Clone for TrackableMarkerTrackingModeANDROID
impl Clone for TrackableMarkerTrackingModeANDROID
Source§fn clone(&self) -> TrackableMarkerTrackingModeANDROID
fn clone(&self) -> TrackableMarkerTrackingModeANDROID
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 Default for TrackableMarkerTrackingModeANDROID
impl Default for TrackableMarkerTrackingModeANDROID
Source§fn default() -> TrackableMarkerTrackingModeANDROID
fn default() -> TrackableMarkerTrackingModeANDROID
Returns the “default value” for a type. Read more
Source§impl PartialEq for TrackableMarkerTrackingModeANDROID
impl PartialEq for TrackableMarkerTrackingModeANDROID
Source§fn eq(&self, other: &TrackableMarkerTrackingModeANDROID) -> bool
fn eq(&self, other: &TrackableMarkerTrackingModeANDROID) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for TrackableMarkerTrackingModeANDROID
impl Eq for TrackableMarkerTrackingModeANDROID
impl StructuralPartialEq for TrackableMarkerTrackingModeANDROID
Auto Trait Implementations§
impl Freeze for TrackableMarkerTrackingModeANDROID
impl RefUnwindSafe for TrackableMarkerTrackingModeANDROID
impl Send for TrackableMarkerTrackingModeANDROID
impl Sync for TrackableMarkerTrackingModeANDROID
impl Unpin for TrackableMarkerTrackingModeANDROID
impl UnwindSafe for TrackableMarkerTrackingModeANDROID
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