pub struct ProjectionEntityAlias {Show 16 fields
pub canonical_entity_id: EntityId,
pub alias_text: String,
pub alias_source: String,
pub match_evidence: Option<Value>,
pub confidence: f32,
pub merge_decision: String,
pub scope_key: ScopeKey,
pub review_state: String,
pub is_human_confirmed: bool,
pub is_human_confirmed_final: bool,
pub superseded_by_entity_id: Option<EntityId>,
pub split_from_entity_id: Option<EntityId>,
pub source_envelope_id: EnvelopeId,
pub recorded_at: String,
pub source_exported_at: Option<String>,
pub transformed_at: Option<String>,
}Expand description
Public read shape for imported entity-alias rows.
Fields§
§canonical_entity_id: EntityId§alias_text: String§alias_source: String§match_evidence: Option<Value>§confidence: f32§merge_decision: String§scope_key: ScopeKey§review_state: String§is_human_confirmed: bool§is_human_confirmed_final: bool§superseded_by_entity_id: Option<EntityId>§split_from_entity_id: Option<EntityId>§source_envelope_id: EnvelopeId§recorded_at: String§source_exported_at: Option<String>§transformed_at: Option<String>Trait Implementations§
Source§impl Clone for ProjectionEntityAlias
impl Clone for ProjectionEntityAlias
Source§fn clone(&self) -> ProjectionEntityAlias
fn clone(&self) -> ProjectionEntityAlias
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 ProjectionEntityAlias
impl Debug for ProjectionEntityAlias
Source§impl<'de> Deserialize<'de> for ProjectionEntityAlias
impl<'de> Deserialize<'de> for ProjectionEntityAlias
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 ProjectionEntityAlias
impl RefUnwindSafe for ProjectionEntityAlias
impl Send for ProjectionEntityAlias
impl Sync for ProjectionEntityAlias
impl Unpin for ProjectionEntityAlias
impl UnsafeUnpin for ProjectionEntityAlias
impl UnwindSafe for ProjectionEntityAlias
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