pub struct VerdictRecordView {
pub seq: u64,
pub at_ms: u64,
pub verdict: Verdict,
pub localized: Vec<EvidenceRef>,
pub localization_gaps: Vec<EvidenceGap>,
}Expand description
One recorded verdict in the append-only lineage (re-judgements
append with supersedes; history is never deleted — 08 §2.5).
Fields§
§seq: u64Ledger seq of the verdictRecorded event.
at_ms: u64Wall clock of the record.
verdict: VerdictThe full verdict as recorded.
localized: Vec<EvidenceRef>This judgment’s localized settlement/verdict/human evidence (item ③, 2026-07-18); empty on offline re-judgements and pre-incorporation records.
localization_gaps: Vec<EvidenceGap>Typed localization failures of the same judgment (payload mirror — the seq-bearing aggregate lives on the dossier).
Trait Implementations§
Source§impl Clone for VerdictRecordView
impl Clone for VerdictRecordView
Source§fn clone(&self) -> VerdictRecordView
fn clone(&self) -> VerdictRecordView
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 VerdictRecordView
impl Debug for VerdictRecordView
Source§impl<'de> Deserialize<'de> for VerdictRecordView
impl<'de> Deserialize<'de> for VerdictRecordView
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 JsonSchema for VerdictRecordView
impl JsonSchema for VerdictRecordView
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for VerdictRecordView
impl PartialEq for VerdictRecordView
Source§impl Serialize for VerdictRecordView
impl Serialize for VerdictRecordView
impl StructuralPartialEq for VerdictRecordView
Auto Trait Implementations§
impl Freeze for VerdictRecordView
impl RefUnwindSafe for VerdictRecordView
impl Send for VerdictRecordView
impl Sync for VerdictRecordView
impl Unpin for VerdictRecordView
impl UnsafeUnpin for VerdictRecordView
impl UnwindSafe for VerdictRecordView
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