pub struct RecallGraphResponse {
pub nodes: Vec<GraphNode>,
pub edges: Vec<GraphEdge>,
pub total_nodes: u32,
}Expand description
recall.graph response (CMP Spec §4.4).
Fields§
§nodes: Vec<GraphNode>§edges: Vec<GraphEdge>§total_nodes: u32Trait Implementations§
Source§impl Clone for RecallGraphResponse
impl Clone for RecallGraphResponse
Source§fn clone(&self) -> RecallGraphResponse
fn clone(&self) -> RecallGraphResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RecallGraphResponse
impl Debug for RecallGraphResponse
Source§impl<'de> Deserialize<'de> for RecallGraphResponse
impl<'de> Deserialize<'de> for RecallGraphResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RecallGraphResponse
impl RefUnwindSafe for RecallGraphResponse
impl Send for RecallGraphResponse
impl Sync for RecallGraphResponse
impl Unpin for RecallGraphResponse
impl UnsafeUnpin for RecallGraphResponse
impl UnwindSafe for RecallGraphResponse
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