pub struct ProjectionImportLogEntry {Show 30 fields
pub batch_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 claim_count: usize,
pub relation_count: usize,
pub episode_count: usize,
pub alias_count: usize,
pub evidence_count: usize,
pub status: String,
pub source_exported_at: Option<String>,
pub transformed_at: Option<String>,
pub imported_at: String,
pub source_run_id: Option<String>,
pub comparability_snapshot_version: Option<String>,
pub direct_write: bool,
pub failure_reason: Option<String>,
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 V11 projection import log entry.
Fields§
§batch_id: String§source_envelope_id: String§schema_version: StringImport-side batch schema version recorded at the memory boundary.
export_schema_version: Option<String>Source export schema version preserved as provenance when provided.
content_digest: String§scope_namespace: String§scope_domain: Option<String>§scope_workspace_id: Option<String>§scope_repo_id: Option<String>§record_count: usize§claim_count: usize§relation_count: usize§episode_count: usize§alias_count: usize§evidence_count: usize§status: String§source_exported_at: Option<String>§transformed_at: Option<String>§imported_at: String§source_run_id: Option<String>§comparability_snapshot_version: Option<String>§direct_write: bool§failure_reason: Option<String>§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 ProjectionImportLogEntry
impl ProjectionImportLogEntry
pub fn scope_key(&self) -> ScopeKey
pub fn rebuildable_kernel_batch_v3( &self, ) -> Result<Option<ProjectionImportBatchV3>, MemoryError>
Trait Implementations§
Source§impl Clone for ProjectionImportLogEntry
impl Clone for ProjectionImportLogEntry
Source§fn clone(&self) -> ProjectionImportLogEntry
fn clone(&self) -> ProjectionImportLogEntry
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 ProjectionImportLogEntry
impl Debug for ProjectionImportLogEntry
Source§impl<'de> Deserialize<'de> for ProjectionImportLogEntry
impl<'de> Deserialize<'de> for ProjectionImportLogEntry
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 ProjectionImportLogEntry
impl JsonSchema for ProjectionImportLogEntry
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 ProjectionImportLogEntry
impl RefUnwindSafe for ProjectionImportLogEntry
impl Send for ProjectionImportLogEntry
impl Sync for ProjectionImportLogEntry
impl Unpin for ProjectionImportLogEntry
impl UnsafeUnpin for ProjectionImportLogEntry
impl UnwindSafe for ProjectionImportLogEntry
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