pub struct CrossAgentNetworkResponse {
pub agents: Vec<AgentNetworkInfo>,
pub nodes: Vec<AgentNetworkNode>,
pub edges: Vec<AgentNetworkEdge>,
pub stats: AgentNetworkStats,
pub node_count: usize,
}Expand description
Response from the cross-agent network endpoint
Fields§
§agents: Vec<AgentNetworkInfo>§nodes: Vec<AgentNetworkNode>§edges: Vec<AgentNetworkEdge>§stats: AgentNetworkStats§node_count: usizeTotal number of memory nodes in the network (added in server v0.6.2).
Trait Implementations§
Source§impl Clone for CrossAgentNetworkResponse
impl Clone for CrossAgentNetworkResponse
Source§fn clone(&self) -> CrossAgentNetworkResponse
fn clone(&self) -> CrossAgentNetworkResponse
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 CrossAgentNetworkResponse
impl Debug for CrossAgentNetworkResponse
Source§impl<'de> Deserialize<'de> for CrossAgentNetworkResponse
impl<'de> Deserialize<'de> for CrossAgentNetworkResponse
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 CrossAgentNetworkResponse
impl RefUnwindSafe for CrossAgentNetworkResponse
impl Send for CrossAgentNetworkResponse
impl Sync for CrossAgentNetworkResponse
impl Unpin for CrossAgentNetworkResponse
impl UnsafeUnpin for CrossAgentNetworkResponse
impl UnwindSafe for CrossAgentNetworkResponse
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