pub struct GraphResult {
pub root: GraphRoot,
pub direction: String,
pub max_depth: usize,
pub max_nodes: usize,
pub truncated: bool,
pub nodes: Vec<GraphNode>,
pub edges: Vec<GraphEdge>,
}Expand description
JSON output for graph command
Fields§
§root: GraphRoot§direction: String§max_depth: usize§max_nodes: usize§truncated: bool§nodes: Vec<GraphNode>§edges: Vec<GraphEdge>Trait Implementations§
Source§impl Debug for GraphResult
impl Debug for GraphResult
Auto Trait Implementations§
impl Freeze for GraphResult
impl RefUnwindSafe for GraphResult
impl Send for GraphResult
impl Sync for GraphResult
impl Unpin for GraphResult
impl UnsafeUnpin for GraphResult
impl UnwindSafe for GraphResult
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