pub struct VerificationResultRow {
pub session_id: String,
pub node_id: String,
pub result_json: String,
pub syntax_ok: bool,
pub build_ok: bool,
pub tests_ok: bool,
pub lint_ok: bool,
pub diagnostics_count: i32,
pub tests_passed: i32,
pub tests_failed: i32,
pub degraded: bool,
pub degraded_reason: Option<String>,
}Expand description
PSP-5 Phase 8: Record for verification result snapshot persistence
Fields§
§session_id: String§node_id: String§result_json: StringJSON-serialized VerificationResult (full data for resume reconstruction)
syntax_ok: bool§build_ok: bool§tests_ok: bool§lint_ok: bool§diagnostics_count: i32§tests_passed: i32§tests_failed: i32§degraded: bool§degraded_reason: Option<String>Trait Implementations§
Source§impl Clone for VerificationResultRow
impl Clone for VerificationResultRow
Source§fn clone(&self) -> VerificationResultRow
fn clone(&self) -> VerificationResultRow
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 VerificationResultRow
impl Debug for VerificationResultRow
Source§impl<'de> Deserialize<'de> for VerificationResultRow
impl<'de> Deserialize<'de> for VerificationResultRow
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 VerificationResultRow
impl RefUnwindSafe for VerificationResultRow
impl Send for VerificationResultRow
impl Sync for VerificationResultRow
impl Unpin for VerificationResultRow
impl UnsafeUnpin for VerificationResultRow
impl UnwindSafe for VerificationResultRow
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