pub struct ProjectionImportFailureReceiptEntry {Show 25 fields
pub failure_id: String,
pub source_envelope_id: String,
pub schema_version: String,
pub export_schema_version: Option<String>,
pub content_digest: String,
pub source_authority: String,
pub scope_namespace: String,
pub scope_domain: Option<String>,
pub scope_workspace_id: Option<String>,
pub scope_repo_id: Option<String>,
pub record_count: usize,
pub error_kind: String,
pub error_message: String,
pub source_exported_at: Option<String>,
pub transformed_at: Option<String>,
pub failed_at: String,
pub source_run_id: Option<String>,
pub comparability_snapshot_version: Option<String>,
pub direct_write: bool,
pub evidence_bundle_id: Option<String>,
pub evidence_bundle_json: Option<Value>,
pub episode_bundle_id: Option<String>,
pub episode_bundle_json: Option<Value>,
pub execution_context_json: Option<Value>,
pub kernel_payload_json: Option<Value>,
}Expand description
Public view of a durable failed projection import receipt.
Fields§
§failure_id: String§source_envelope_id: String§schema_version: String§export_schema_version: Option<String>§content_digest: String§scope_namespace: String§scope_domain: Option<String>§scope_workspace_id: Option<String>§scope_repo_id: Option<String>§record_count: usize§error_kind: String§error_message: String§source_exported_at: Option<String>§transformed_at: Option<String>§failed_at: String§source_run_id: Option<String>§comparability_snapshot_version: Option<String>§direct_write: bool§evidence_bundle_id: Option<String>§evidence_bundle_json: Option<Value>§episode_bundle_id: Option<String>§episode_bundle_json: Option<Value>§execution_context_json: Option<Value>§kernel_payload_json: Option<Value>Implementations§
Source§impl ProjectionImportFailureReceiptEntry
impl ProjectionImportFailureReceiptEntry
pub fn scope_key(&self) -> ScopeKey
pub fn rebuildable_kernel_batch_v3( &self, ) -> Result<Option<ProjectionImportBatchV3>, MemoryError>
Trait Implementations§
Source§impl Clone for ProjectionImportFailureReceiptEntry
impl Clone for ProjectionImportFailureReceiptEntry
Source§fn clone(&self) -> ProjectionImportFailureReceiptEntry
fn clone(&self) -> ProjectionImportFailureReceiptEntry
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<'de> Deserialize<'de> for ProjectionImportFailureReceiptEntry
impl<'de> Deserialize<'de> for ProjectionImportFailureReceiptEntry
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
Source§impl JsonSchema for ProjectionImportFailureReceiptEntry
impl JsonSchema for ProjectionImportFailureReceiptEntry
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 moreAuto Trait Implementations§
impl Freeze for ProjectionImportFailureReceiptEntry
impl RefUnwindSafe for ProjectionImportFailureReceiptEntry
impl Send for ProjectionImportFailureReceiptEntry
impl Sync for ProjectionImportFailureReceiptEntry
impl Unpin for ProjectionImportFailureReceiptEntry
impl UnsafeUnpin for ProjectionImportFailureReceiptEntry
impl UnwindSafe for ProjectionImportFailureReceiptEntry
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