#[non_exhaustive]pub enum TrackerKind {
Uninit,
Init,
Array,
Struct,
SmartPointer,
SmartPointerSlice,
Enum,
List,
Map,
Option,
}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.
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 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