pub struct GateScoreSeries {
pub gate: String,
pub evaluations: Vec<GateScorePoint>,
}Expand description
The ordered evaluation series for one gate identity across every folded mission log. The gate identity is echoed back so the machine form self-describes (the escalation-metrics/provenance JSON idiom).
Fields§
§gate: String§evaluations: Vec<GateScorePoint>Trait Implementations§
Source§impl Clone for GateScoreSeries
impl Clone for GateScoreSeries
Source§fn clone(&self) -> GateScoreSeries
fn clone(&self) -> GateScoreSeries
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GateScoreSeries
impl Debug for GateScoreSeries
Source§impl<'de> Deserialize<'de> for GateScoreSeries
impl<'de> Deserialize<'de> for GateScoreSeries
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 GateScoreSeries
impl PartialEq for GateScoreSeries
Source§impl Serialize for GateScoreSeries
impl Serialize for GateScoreSeries
impl StructuralPartialEq for GateScoreSeries
Auto Trait Implementations§
impl Freeze for GateScoreSeries
impl RefUnwindSafe for GateScoreSeries
impl Send for GateScoreSeries
impl Sync for GateScoreSeries
impl Unpin for GateScoreSeries
impl UnsafeUnpin for GateScoreSeries
impl UnwindSafe for GateScoreSeries
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