pub struct DecodeResult {
pub changeset_id: ChangesetId,
pub pages: Vec<DecodedPage>,
pub symbols_used: u32,
pub decode_proof: Option<EcsDecodeProof>,
}Expand description
Result of a successful decode operation.
Fields§
§changeset_id: ChangesetIdThe changeset identifier that was decoded.
pages: Vec<DecodedPage>Decoded and validated pages, sorted by page number.
symbols_used: u32Number of symbols used for decoding.
decode_proof: Option<EcsDecodeProof>Optional decode proof emitted under policy control.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DecodeResult
impl RefUnwindSafe for DecodeResult
impl Send for DecodeResult
impl Sync for DecodeResult
impl Unpin for DecodeResult
impl UnsafeUnpin for DecodeResult
impl UnwindSafe for DecodeResult
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, _span: NoopSpan) -> Self
fn instrument(self, _span: NoopSpan) -> Self
Instruments this future with a span (no-op when disabled).
Source§fn in_current_span(self) -> Self
fn in_current_span(self) -> Self
Instruments this future with the current span (no-op when disabled).