pub struct LinkCandidate {
pub entity_id: EntityId,
pub score: Confidence,
pub method: LinkMethod,
}Fields§
§entity_id: EntityId§score: Confidence§method: LinkMethodTrait Implementations§
Source§impl Clone for LinkCandidate
impl Clone for LinkCandidate
Source§fn clone(&self) -> LinkCandidate
fn clone(&self) -> LinkCandidate
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 LinkCandidate
impl Debug for LinkCandidate
Source§impl<'de> Deserialize<'de> for LinkCandidate
impl<'de> Deserialize<'de> for LinkCandidate
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
impl Eq for LinkCandidate
Source§impl PartialEq for LinkCandidate
impl PartialEq for LinkCandidate
Source§impl Serialize for LinkCandidate
impl Serialize for LinkCandidate
impl StructuralPartialEq for LinkCandidate
Auto Trait Implementations§
impl Freeze for LinkCandidate
impl RefUnwindSafe for LinkCandidate
impl Send for LinkCandidate
impl Sync for LinkCandidate
impl Unpin for LinkCandidate
impl UnsafeUnpin for LinkCandidate
impl UnwindSafe for LinkCandidate
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