pub struct TopologyResponse {
pub nodes: Vec<TopologyNode>,
pub edges: Vec<TopologyEdge>,
}Expand description
Response shape for /api/a2a/topology.
Fields§
§nodes: Vec<TopologyNode>Agents in the topology (nodes).
edges: Vec<TopologyEdge>Communication edges aggregated from the recent message log.
Trait Implementations§
Source§impl Clone for TopologyResponse
impl Clone for TopologyResponse
Source§fn clone(&self) -> TopologyResponse
fn clone(&self) -> TopologyResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TopologyResponse
impl Debug for TopologyResponse
Source§impl<'de> Deserialize<'de> for TopologyResponse
impl<'de> Deserialize<'de> for TopologyResponse
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 TopologyResponse
impl RefUnwindSafe for TopologyResponse
impl Send for TopologyResponse
impl Sync for TopologyResponse
impl Unpin for TopologyResponse
impl UnsafeUnpin for TopologyResponse
impl UnwindSafe for TopologyResponse
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