pub struct ClassHierarchy {
pub edges: Vec<SubclassEdge>,
pub parents: BTreeMap<String, Vec<String>>,
pub children: BTreeMap<String, Vec<String>>,
}Fields§
§edges: Vec<SubclassEdge>§parents: BTreeMap<String, Vec<String>>§children: BTreeMap<String, Vec<String>>Trait Implementations§
Source§impl Clone for ClassHierarchy
impl Clone for ClassHierarchy
Source§fn clone(&self) -> ClassHierarchy
fn clone(&self) -> ClassHierarchy
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ClassHierarchy
impl Debug for ClassHierarchy
Source§impl Default for ClassHierarchy
impl Default for ClassHierarchy
Source§fn default() -> ClassHierarchy
fn default() -> ClassHierarchy
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ClassHierarchy
impl<'de> Deserialize<'de> for ClassHierarchy
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ClassHierarchy
impl RefUnwindSafe for ClassHierarchy
impl Send for ClassHierarchy
impl Sync for ClassHierarchy
impl Unpin for ClassHierarchy
impl UnsafeUnpin for ClassHierarchy
impl UnwindSafe for ClassHierarchy
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