pub struct CoordinatedResponse {
pub recommendations: Vec<Recommendation>,
pub domain_count: usize,
pub total_recommendations: usize,
}Expand description
Coordinated response from multiple agents
Fields§
§recommendations: Vec<Recommendation>All recommendations
domain_count: usizeNumber of domains involved
total_recommendations: usizeTotal number of recommendations
Trait Implementations§
Source§impl Clone for CoordinatedResponse
impl Clone for CoordinatedResponse
Source§fn clone(&self) -> CoordinatedResponse
fn clone(&self) -> CoordinatedResponse
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 moreAuto Trait Implementations§
impl Freeze for CoordinatedResponse
impl RefUnwindSafe for CoordinatedResponse
impl Send for CoordinatedResponse
impl Sync for CoordinatedResponse
impl Unpin for CoordinatedResponse
impl UnwindSafe for CoordinatedResponse
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