pub struct ExportEntityAlias {
pub canonical_entity_id: EntityId,
pub alias_text: String,
pub alias_source: String,
pub match_evidence: Option<Value>,
pub confidence: f32,
pub scope: Option<ScopeKey>,
pub superseded_by_entity_id: Option<EntityId>,
pub split_from_entity_id: Option<EntityId>,
}Expand description
An entity alias suggestion from Forge.
Fields§
§canonical_entity_id: EntityIdThe canonical entity this alias maps to.
alias_text: StringThe alias text.
alias_source: StringSource of the alias (e.g. “forge_extraction”, “manual”).
match_evidence: Option<Value>Match evidence (opaque blob for audit).
confidence: f32Confidence in the alias mapping.
scope: Option<ScopeKey>Scope semantics for this alias.
superseded_by_entity_id: Option<EntityId>If this alias participates in a merge lineage.
split_from_entity_id: Option<EntityId>If this alias came from a split lineage.
Trait Implementations§
Source§impl Clone for ExportEntityAlias
impl Clone for ExportEntityAlias
Source§fn clone(&self) -> ExportEntityAlias
fn clone(&self) -> ExportEntityAlias
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 ExportEntityAlias
impl Debug for ExportEntityAlias
Source§impl<'de> Deserialize<'de> for ExportEntityAlias
impl<'de> Deserialize<'de> for ExportEntityAlias
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 ExportEntityAlias
impl JsonSchema for ExportEntityAlias
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 ExportEntityAlias
impl RefUnwindSafe for ExportEntityAlias
impl Send for ExportEntityAlias
impl Sync for ExportEntityAlias
impl Unpin for ExportEntityAlias
impl UnsafeUnpin for ExportEntityAlias
impl UnwindSafe for ExportEntityAlias
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