pub struct InferredHierarchy {
pub edges: Vec<SubclassEdge>,
pub unsatisfiable: Vec<String>,
pub combined: ClassHierarchy,
}Fields§
§edges: Vec<SubclassEdge>§unsatisfiable: Vec<String>§combined: ClassHierarchyTrait Implementations§
Source§impl Clone for InferredHierarchy
impl Clone for InferredHierarchy
Source§fn clone(&self) -> InferredHierarchy
fn clone(&self) -> InferredHierarchy
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 InferredHierarchy
impl Debug for InferredHierarchy
Source§impl<'de> Deserialize<'de> for InferredHierarchy
impl<'de> Deserialize<'de> for InferredHierarchy
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 InferredHierarchy
impl RefUnwindSafe for InferredHierarchy
impl Send for InferredHierarchy
impl Sync for InferredHierarchy
impl Unpin for InferredHierarchy
impl UnsafeUnpin for InferredHierarchy
impl UnwindSafe for InferredHierarchy
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