pub struct CrateGraph {
pub crate_nodes: RecordBatch,
pub crate_edges: RecordBatch,
}Expand description
The two Arrow tables that describe a workspace’s crate dependency graph.
Fields§
§crate_nodes: RecordBatchCrateNode RecordBatch — one row per workspace member.
crate_edges: RecordBatchCrateEdge RecordBatch — one row per dependency relationship.
Auto Trait Implementations§
impl !RefUnwindSafe for CrateGraph
impl !UnwindSafe for CrateGraph
impl Freeze for CrateGraph
impl Send for CrateGraph
impl Sync for CrateGraph
impl Unpin for CrateGraph
impl UnsafeUnpin for CrateGraph
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