pub struct TypeHierarchy {
pub major_category: String,
pub sub_category: String,
pub specific_type: String,
pub full_type: String,
}
Expand description
Enhanced type hierarchy classification for treemap visualization
Fields§
§major_category: String
Major category: Collections, Strings, Smart Pointers, etc.
sub_category: String
Sub category: Maps, Sequences, Owned, Shared, etc.
specific_type: String
Specific type: HashMap, Vec, Box, etc.
full_type: String
Full type name: HashMap<String, i32>
Trait Implementations§
Source§impl Clone for TypeHierarchy
impl Clone for TypeHierarchy
Source§fn clone(&self) -> TypeHierarchy
fn clone(&self) -> TypeHierarchy
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 moreAuto Trait Implementations§
impl Freeze for TypeHierarchy
impl RefUnwindSafe for TypeHierarchy
impl Send for TypeHierarchy
impl Sync for TypeHierarchy
impl Unpin for TypeHierarchy
impl UnwindSafe for TypeHierarchy
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