pub struct BridgeReferenceInterpretation {
pub source_schema_version: String,
pub record_count: usize,
pub preserved_execution_context: bool,
pub preserved_evidence_bundle: bool,
}Fields§
§source_schema_version: String§record_count: usize§preserved_execution_context: bool§preserved_evidence_bundle: boolImplementations§
Source§impl BridgeReferenceInterpretation
impl BridgeReferenceInterpretation
Sourcepub fn from_v3(envelope: &ExportEnvelopeV3) -> Result<Self, BridgeError>
pub fn from_v3(envelope: &ExportEnvelopeV3) -> Result<Self, BridgeError>
Interprets a V3 Forge export envelope through the reference bridge path.
Sourcepub fn from_v2(envelope: &ExportEnvelopeV2) -> Result<Self, BridgeError>
pub fn from_v2(envelope: &ExportEnvelopeV2) -> Result<Self, BridgeError>
Interprets a deprecated V2 Forge export envelope through the reference bridge path.
Trait Implementations§
Source§impl Clone for BridgeReferenceInterpretation
impl Clone for BridgeReferenceInterpretation
Source§fn clone(&self) -> BridgeReferenceInterpretation
fn clone(&self) -> BridgeReferenceInterpretation
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 moreAuto Trait Implementations§
impl Freeze for BridgeReferenceInterpretation
impl RefUnwindSafe for BridgeReferenceInterpretation
impl Send for BridgeReferenceInterpretation
impl Sync for BridgeReferenceInterpretation
impl Unpin for BridgeReferenceInterpretation
impl UnsafeUnpin for BridgeReferenceInterpretation
impl UnwindSafe for BridgeReferenceInterpretation
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