pub struct ReviewOutcomeRow {
pub session_id: String,
pub node_id: String,
pub outcome: String,
pub reviewer_note: Option<String>,
pub energy_at_review: Option<f64>,
pub degraded: Option<bool>,
pub escalation_category: Option<String>,
}Expand description
PSP-5 Phase 8: Record for review outcome persistence
Fields§
§session_id: String§node_id: String§outcome: StringOne of: “approved”, “rejected”, “edit_requested”, “correction_requested”, “skipped”
reviewer_note: Option<String>§energy_at_review: Option<f64>Energy at time of review decision
degraded: Option<bool>Whether verification was degraded when decision was made
escalation_category: Option<String>Escalation category if the node had been classified
Trait Implementations§
Source§impl Clone for ReviewOutcomeRow
impl Clone for ReviewOutcomeRow
Source§fn clone(&self) -> ReviewOutcomeRow
fn clone(&self) -> ReviewOutcomeRow
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 ReviewOutcomeRow
impl Debug for ReviewOutcomeRow
Source§impl<'de> Deserialize<'de> for ReviewOutcomeRow
impl<'de> Deserialize<'de> for ReviewOutcomeRow
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
Auto Trait Implementations§
impl Freeze for ReviewOutcomeRow
impl RefUnwindSafe for ReviewOutcomeRow
impl Send for ReviewOutcomeRow
impl Sync for ReviewOutcomeRow
impl Unpin for ReviewOutcomeRow
impl UnsafeUnpin for ReviewOutcomeRow
impl UnwindSafe for ReviewOutcomeRow
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