pub struct VersionContracts {
pub local_runner_contract: &'static str,
pub cli_output_envelope: &'static str,
pub runtime_contract: &'static str,
pub snapshot_metadata_contract: &'static str,
pub unified_readiness_contract: &'static str,
pub run_evidence_schema: &'static str,
pub trial_artifact_contract: &'static str,
pub version_metadata_contract: &'static str,
}Fields§
§local_runner_contract: &'static str§cli_output_envelope: &'static str§runtime_contract: &'static str§snapshot_metadata_contract: &'static str§unified_readiness_contract: &'static str§run_evidence_schema: &'static str§trial_artifact_contract: &'static str§version_metadata_contract: &'static strTrait Implementations§
Source§impl Clone for VersionContracts
impl Clone for VersionContracts
Source§fn clone(&self) -> VersionContracts
fn clone(&self) -> VersionContracts
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 VersionContracts
impl Debug for VersionContracts
Auto Trait Implementations§
impl Freeze for VersionContracts
impl RefUnwindSafe for VersionContracts
impl Send for VersionContracts
impl Sync for VersionContracts
impl Unpin for VersionContracts
impl UnsafeUnpin for VersionContracts
impl UnwindSafe for VersionContracts
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,
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> 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