pub struct ReleaseTrendPoint {
pub candidate_id: String,
pub risk_score: f64,
pub risk_delta: f64,
pub risk_level: ReleaseRiskLevel,
pub requires_escalation: bool,
pub trend: ReleaseTrendDirection,
}Expand description
One trend row in a release-candidate risk timeline.
Fields§
§candidate_id: StringCandidate identifier.
risk_score: f64Candidate risk score.
risk_delta: f64Score delta from previous candidate (0.0 for first point).
risk_level: ReleaseRiskLevelCandidate risk level.
requires_escalation: boolWhether this candidate requires escalation.
trend: ReleaseTrendDirectionTrend direction from the previous candidate.
Trait Implementations§
Source§impl Clone for ReleaseTrendPoint
impl Clone for ReleaseTrendPoint
Source§fn clone(&self) -> ReleaseTrendPoint
fn clone(&self) -> ReleaseTrendPoint
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 ReleaseTrendPoint
impl Debug for ReleaseTrendPoint
Source§impl<'de> Deserialize<'de> for ReleaseTrendPoint
impl<'de> Deserialize<'de> for ReleaseTrendPoint
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
Source§impl PartialEq for ReleaseTrendPoint
impl PartialEq for ReleaseTrendPoint
Source§impl Serialize for ReleaseTrendPoint
impl Serialize for ReleaseTrendPoint
impl StructuralPartialEq for ReleaseTrendPoint
Auto Trait Implementations§
impl Freeze for ReleaseTrendPoint
impl RefUnwindSafe for ReleaseTrendPoint
impl Send for ReleaseTrendPoint
impl Sync for ReleaseTrendPoint
impl Unpin for ReleaseTrendPoint
impl UnsafeUnpin for ReleaseTrendPoint
impl UnwindSafe for ReleaseTrendPoint
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