pub struct CompatibilityReport {Show 13 fields
pub schema_version: u32,
pub product: String,
pub environment: RuntimeEnvironment,
pub spec_hash: String,
pub target: ExecutionTarget,
pub compatible: bool,
pub requires_approval: bool,
pub required_approval_capabilities: Vec<String>,
pub replay_support: ReplaySupport,
pub stage_requirements: Vec<StageCompatibilityRequirement>,
pub unknown_stage_keys: Vec<String>,
pub supported_run_modes: Vec<String>,
pub reasons: Vec<String>,
}Expand description
Machine-readable compatibility report for a authored spec against a runtime surface.
Fields§
§schema_version: u32Report schema version.
product: StringRuntime product identity that produced the report.
environment: RuntimeEnvironmentRequested environment posture.
spec_hash: StringCanonical spec hash.
target: ExecutionTargetLowered execution target.
compatible: boolWhether the spec is executable on this runtime surface.
requires_approval: boolWhether deploy-time approval is required in the requested environment.
required_approval_capabilities: Vec<String>Approval capabilities required by the authored spec.
replay_support: ReplaySupportEffective replay posture after considering all stage requirements.
stage_requirements: Vec<StageCompatibilityRequirement>Stage-level requirements derived from the spec.
unknown_stage_keys: Vec<String>Stage keys the runtime does not recognize.
supported_run_modes: Vec<String>Model-specific run modes available for the target.
reasons: Vec<String>Human-readable reasons for incompatibility or deployment blockers.
Trait Implementations§
Source§impl Clone for CompatibilityReport
impl Clone for CompatibilityReport
Source§fn clone(&self) -> CompatibilityReport
fn clone(&self) -> CompatibilityReport
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 moreSource§impl Debug for CompatibilityReport
impl Debug for CompatibilityReport
Source§impl PartialEq for CompatibilityReport
impl PartialEq for CompatibilityReport
Source§impl Serialize for CompatibilityReport
impl Serialize for CompatibilityReport
impl Eq for CompatibilityReport
impl StructuralPartialEq for CompatibilityReport
Auto Trait Implementations§
impl Freeze for CompatibilityReport
impl RefUnwindSafe for CompatibilityReport
impl Send for CompatibilityReport
impl Sync for CompatibilityReport
impl Unpin for CompatibilityReport
impl UnwindSafe for CompatibilityReport
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§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 moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::RequestCreates a shared type from an unshared type.