pub struct ClassGraph {
pub defines: Vec<Vec<String>>,
pub depends_on: Vec<Vec<ClassEdge>>,
}Expand description
What each class introduces, and which classes it consumes. Both indexed by
class index, parallel to Partition::classes.
Fields§
§defines: Vec<Vec<String>>§depends_on: Vec<Vec<ClassEdge>>Auto Trait Implementations§
impl Freeze for ClassGraph
impl RefUnwindSafe for ClassGraph
impl Send for ClassGraph
impl Sync for ClassGraph
impl Unpin for ClassGraph
impl UnsafeUnpin for ClassGraph
impl UnwindSafe for ClassGraph
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