#[repr(i32)]pub enum TrackingState {
NotTracked = 0,
Inferred = 1,
Tracked = 2,
}Variants§
Trait Implementations§
Source§impl Clone for TrackingState
impl Clone for TrackingState
Source§fn clone(&self) -> TrackingState
fn clone(&self) -> TrackingState
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 TrackingState
impl Debug for TrackingState
Source§impl Hash for TrackingState
impl Hash for TrackingState
Source§impl PartialEq for TrackingState
impl PartialEq for TrackingState
impl Eq for TrackingState
impl StructuralPartialEq for TrackingState
Auto Trait Implementations§
impl Freeze for TrackingState
impl RefUnwindSafe for TrackingState
impl Send for TrackingState
impl Sync for TrackingState
impl Unpin for TrackingState
impl UnwindSafe for TrackingState
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