usecrate::agent::route_provider::dynamic_routing::{health_check::HealthCheckStatus,node::Node};/// Represents a message with fetched nodes.
#[derive(Debug, Clone)]pubstructFetchedNodes{/// The fetched nodes.
pubnodes:Vec<Node>,
}/// Represents a message with the health state of a node.
pubstructNodeHealthState{/// The node.
pubnode: Node,
/// The health state of the node.
pubhealth: HealthCheckStatus,
}