pub struct ClassEdge {
pub parent: Name,
pub child: Name,
}Expand description
Represents a class hierarchy edge (parent → child relationship).
Fields§
§parent: NameThe parent class.
child: NameThe child class that extends the parent.
Implementations§
Trait Implementations§
impl Eq for ClassEdge
impl StructuralPartialEq for ClassEdge
Auto Trait Implementations§
impl Freeze for ClassEdge
impl RefUnwindSafe for ClassEdge
impl Send for ClassEdge
impl Sync for ClassEdge
impl Unpin for ClassEdge
impl UnsafeUnpin for ClassEdge
impl UnwindSafe for ClassEdge
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