pub struct GraphTraverseResponse {
pub root_id: String,
pub depth: u32,
pub node_count: usize,
pub nodes: Vec<GraphNodeResponse>,
}Expand description
Response from graph traversal.
Fields§
§root_id: String§depth: u32§node_count: usize§nodes: Vec<GraphNodeResponse>Trait Implementations§
Source§impl Debug for GraphTraverseResponse
impl Debug for GraphTraverseResponse
Auto Trait Implementations§
impl Freeze for GraphTraverseResponse
impl RefUnwindSafe for GraphTraverseResponse
impl Send for GraphTraverseResponse
impl Sync for GraphTraverseResponse
impl Unpin for GraphTraverseResponse
impl UnsafeUnpin for GraphTraverseResponse
impl UnwindSafe for GraphTraverseResponse
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