pub struct ImpactScore {
pub issue_id: String,
pub score: f64,
pub breakdown: Vec<ScoreComponent>,
}Expand description
Full impact score with transparent 8-component breakdown.
Fields§
§issue_id: String§score: f64§breakdown: Vec<ScoreComponent>Trait Implementations§
Source§impl Clone for ImpactScore
impl Clone for ImpactScore
Source§fn clone(&self) -> ImpactScore
fn clone(&self) -> ImpactScore
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 moreSource§impl Debug for ImpactScore
impl Debug for ImpactScore
Auto Trait Implementations§
impl Freeze for ImpactScore
impl RefUnwindSafe for ImpactScore
impl Send for ImpactScore
impl Sync for ImpactScore
impl Unpin for ImpactScore
impl UnsafeUnpin for ImpactScore
impl UnwindSafe for ImpactScore
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