pub struct CrossAgentNetworkResponse {
pub node_count: usize,
pub agents: Vec<AgentNetworkInfo>,
pub nodes: Vec<AgentNetworkNode>,
pub edges: Vec<AgentNetworkEdge>,
pub stats: AgentNetworkStats,
}Expand description
Response from cross-agent network query
Fields§
§node_count: usize§agents: Vec<AgentNetworkInfo>§nodes: Vec<AgentNetworkNode>§edges: Vec<AgentNetworkEdge>§stats: AgentNetworkStatsTrait Implementations§
Source§impl Debug for CrossAgentNetworkResponse
impl Debug for CrossAgentNetworkResponse
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