#[non_exhaustive]pub enum TrackerKind {
Show 13 variants
Scalar,
Array,
Struct,
SmartPointer,
SmartPointerSlice,
Enum,
List,
Map,
Set,
Option,
Result,
DynamicValue,
Inner,
}Expand description
A kind-only version of Tracker
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Scalar
Array
Struct
SmartPointer
SmartPointerSlice
Enum
List
Map
Set
Option
Result
DynamicValue
Inner
Trait Implementations§
Source§impl Clone for TrackerKind
impl Clone for TrackerKind
Source§fn clone(&self) -> TrackerKind
fn clone(&self) -> TrackerKind
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 TrackerKind
impl Debug for TrackerKind
Source§impl Hash for TrackerKind
impl Hash for TrackerKind
Source§impl PartialEq for TrackerKind
impl PartialEq for TrackerKind
impl Copy for TrackerKind
impl Eq for TrackerKind
impl StructuralPartialEq for TrackerKind
Auto Trait Implementations§
impl Freeze for TrackerKind
impl RefUnwindSafe for TrackerKind
impl Send for TrackerKind
impl Sync for TrackerKind
impl Unpin for TrackerKind
impl UnsafeUnpin for TrackerKind
impl UnwindSafe for TrackerKind
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.