pub struct ScatterResponse {
pub fighter_id: FighterId,
pub response: String,
pub response_time_ms: u64,
pub quality_score: f64,
}Expand description
A response from a scatter-gather participant.
Fields§
§fighter_id: FighterIdThe responding fighter.
response: StringThe response content.
response_time_ms: u64Response time in milliseconds.
quality_score: f64Self-reported quality score (0.0 to 1.0).
Trait Implementations§
Source§impl Clone for ScatterResponse
impl Clone for ScatterResponse
Source§fn clone(&self) -> ScatterResponse
fn clone(&self) -> ScatterResponse
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 ScatterResponse
impl RefUnwindSafe for ScatterResponse
impl Send for ScatterResponse
impl Sync for ScatterResponse
impl Unpin for ScatterResponse
impl UnsafeUnpin for ScatterResponse
impl UnwindSafe for ScatterResponse
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