pub struct NodeSnapshotDetail {
pub record: NodeStateRecord,
pub energy_history: Vec<EnergyRecord>,
pub verification: Option<VerificationResultRow>,
pub artifact_bundle: Option<ArtifactBundleRow>,
pub sheaf_validations: Vec<SheafValidationRow>,
pub interface_seals: Vec<InterfaceSealRow>,
pub context_provenance: Option<ContextProvenanceRecord>,
}Expand description
PSP-5 Phase 8: Per-node evidence bundle for session rehydration.
Fields§
§record: NodeStateRecord§energy_history: Vec<EnergyRecord>§verification: Option<VerificationResultRow>§artifact_bundle: Option<ArtifactBundleRow>§sheaf_validations: Vec<SheafValidationRow>§interface_seals: Vec<InterfaceSealRow>§context_provenance: Option<ContextProvenanceRecord>Trait Implementations§
Source§impl Clone for NodeSnapshotDetail
impl Clone for NodeSnapshotDetail
Source§fn clone(&self) -> NodeSnapshotDetail
fn clone(&self) -> NodeSnapshotDetail
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 moreAuto Trait Implementations§
impl Freeze for NodeSnapshotDetail
impl RefUnwindSafe for NodeSnapshotDetail
impl Send for NodeSnapshotDetail
impl Sync for NodeSnapshotDetail
impl Unpin for NodeSnapshotDetail
impl UnsafeUnpin for NodeSnapshotDetail
impl UnwindSafe for NodeSnapshotDetail
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more