pub struct SelfHostingBuildReceiptV1 {Show 16 fields
pub schema_version: String,
pub self_hosting_build_receipt_id: SelfHostingBuildReceiptId,
pub spec_bundle_id: SpecBundleId,
pub generated_schema_bundle_id: GeneratedSchemaBundleId,
pub generated_interpreter_bundle_id: GeneratedInterpreterBundleId,
pub generated_conformance_corpus_id: GeneratedConformanceCorpusId,
pub generated_migration_plan_id: GeneratedMigrationPlanId,
pub proof_evaluation_receipt_id: ProofEvaluationReceiptId,
pub human_veto_bundle_id: Option<HumanVetoBundleId>,
pub meta_challenge_bundle_id: Option<MetaChallengeBundleId>,
pub governance_state: GeneratedSurfaceGovernanceState,
pub rollback_required: bool,
pub admission_allowed: bool,
pub advisory_only: bool,
pub notes: Vec<String>,
pub generated_at: String,
}Fields§
§schema_version: String§self_hosting_build_receipt_id: SelfHostingBuildReceiptId§spec_bundle_id: SpecBundleId§generated_schema_bundle_id: GeneratedSchemaBundleId§generated_interpreter_bundle_id: GeneratedInterpreterBundleId§generated_conformance_corpus_id: GeneratedConformanceCorpusId§generated_migration_plan_id: GeneratedMigrationPlanId§proof_evaluation_receipt_id: ProofEvaluationReceiptId§human_veto_bundle_id: Option<HumanVetoBundleId>§meta_challenge_bundle_id: Option<MetaChallengeBundleId>§governance_state: GeneratedSurfaceGovernanceState§rollback_required: bool§admission_allowed: bool§advisory_only: bool§notes: Vec<String>§generated_at: StringTrait Implementations§
Source§impl Clone for SelfHostingBuildReceiptV1
impl Clone for SelfHostingBuildReceiptV1
Source§fn clone(&self) -> SelfHostingBuildReceiptV1
fn clone(&self) -> SelfHostingBuildReceiptV1
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 SelfHostingBuildReceiptV1
impl Debug for SelfHostingBuildReceiptV1
Source§impl<'de> Deserialize<'de> for SelfHostingBuildReceiptV1
impl<'de> Deserialize<'de> for SelfHostingBuildReceiptV1
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for SelfHostingBuildReceiptV1
Source§impl JsonSchema for SelfHostingBuildReceiptV1
impl JsonSchema for SelfHostingBuildReceiptV1
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for SelfHostingBuildReceiptV1
impl PartialEq for SelfHostingBuildReceiptV1
Source§fn eq(&self, other: &SelfHostingBuildReceiptV1) -> bool
fn eq(&self, other: &SelfHostingBuildReceiptV1) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SelfHostingBuildReceiptV1
Auto Trait Implementations§
impl Freeze for SelfHostingBuildReceiptV1
impl RefUnwindSafe for SelfHostingBuildReceiptV1
impl Send for SelfHostingBuildReceiptV1
impl Sync for SelfHostingBuildReceiptV1
impl Unpin for SelfHostingBuildReceiptV1
impl UnsafeUnpin for SelfHostingBuildReceiptV1
impl UnwindSafe for SelfHostingBuildReceiptV1
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