pub struct ProjectionClaimVersion {Show 23 fields
pub claim_version_id: ClaimVersionId,
pub claim_id: ClaimId,
pub claim_state: String,
pub projection_family: String,
pub subject_entity_id: EntityId,
pub predicate: String,
pub object_anchor: Value,
pub scope_key: ScopeKey,
pub valid_from: Option<String>,
pub valid_to: Option<String>,
pub recorded_at: String,
pub preferred_open: bool,
pub source_envelope_id: EnvelopeId,
pub source_authority: String,
pub trace_id: Option<String>,
pub freshness: String,
pub contradiction_status: String,
pub supersedes_claim_version_id: Option<ClaimVersionId>,
pub content: String,
pub confidence: f32,
pub metadata: Option<Value>,
pub source_exported_at: Option<String>,
pub transformed_at: Option<String>,
}Expand description
Public read shape for imported claim projection rows.
Fields§
§claim_version_id: ClaimVersionId§claim_id: ClaimId§claim_state: String§projection_family: String§subject_entity_id: EntityId§predicate: String§object_anchor: Value§scope_key: ScopeKey§valid_from: Option<String>§valid_to: Option<String>§recorded_at: String§preferred_open: bool§source_envelope_id: EnvelopeId§trace_id: Option<String>§freshness: String§contradiction_status: String§supersedes_claim_version_id: Option<ClaimVersionId>§content: String§confidence: f32§metadata: Option<Value>§source_exported_at: Option<String>§transformed_at: Option<String>Trait Implementations§
Source§impl Clone for ProjectionClaimVersion
impl Clone for ProjectionClaimVersion
Source§fn clone(&self) -> ProjectionClaimVersion
fn clone(&self) -> ProjectionClaimVersion
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 ProjectionClaimVersion
impl Debug for ProjectionClaimVersion
Source§impl<'de> Deserialize<'de> for ProjectionClaimVersion
impl<'de> Deserialize<'de> for ProjectionClaimVersion
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
Auto Trait Implementations§
impl Freeze for ProjectionClaimVersion
impl RefUnwindSafe for ProjectionClaimVersion
impl Send for ProjectionClaimVersion
impl Sync for ProjectionClaimVersion
impl Unpin for ProjectionClaimVersion
impl UnsafeUnpin for ProjectionClaimVersion
impl UnwindSafe for ProjectionClaimVersion
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