pub struct EntityLinkResult {
pub linked: usize,
pub ambiguous: usize,
pub edges_created: usize,
}Expand description
Result of a single entity linking run.
Fields§
§linked: usizeNumber of entity pairs linked with Related edges.
ambiguous: usizeNumber of entity pairs tagged as ambiguous (MaybeRelated).
edges_created: usizeNumber of edges created.
Trait Implementations§
Source§impl Clone for EntityLinkResult
impl Clone for EntityLinkResult
Source§fn clone(&self) -> EntityLinkResult
fn clone(&self) -> EntityLinkResult
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 EntityLinkResult
impl Debug for EntityLinkResult
Source§impl Default for EntityLinkResult
impl Default for EntityLinkResult
Source§fn default() -> EntityLinkResult
fn default() -> EntityLinkResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for EntityLinkResult
impl RefUnwindSafe for EntityLinkResult
impl Send for EntityLinkResult
impl Sync for EntityLinkResult
impl Unpin for EntityLinkResult
impl UnsafeUnpin for EntityLinkResult
impl UnwindSafe for EntityLinkResult
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