pub struct GraphNodeResponse {
pub memory_id: String,
pub depth: u32,
pub edges: Vec<GraphEdgeResponse>,
}Expand description
A single node in a graph traversal response.
Fields§
§memory_id: String§depth: u32§edges: Vec<GraphEdgeResponse>Trait Implementations§
Source§impl Debug for GraphNodeResponse
impl Debug for GraphNodeResponse
Auto Trait Implementations§
impl Freeze for GraphNodeResponse
impl RefUnwindSafe for GraphNodeResponse
impl Send for GraphNodeResponse
impl Sync for GraphNodeResponse
impl Unpin for GraphNodeResponse
impl UnsafeUnpin for GraphNodeResponse
impl UnwindSafe for GraphNodeResponse
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