pub struct EntityMember {
pub record_id: RecordId,
pub score: f32,
pub method: ResolutionMethod,
pub source: Option<String>,
}Expand description
A record’s membership in an entity, with its resolution score and method.
Fields§
§record_id: RecordId§score: f32§method: ResolutionMethod§source: Option<String>Trait Implementations§
Source§impl Clone for EntityMember
impl Clone for EntityMember
Source§fn clone(&self) -> EntityMember
fn clone(&self) -> EntityMember
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 EntityMember
impl Debug for EntityMember
Source§impl<'de> Deserialize<'de> for EntityMember
impl<'de> Deserialize<'de> for EntityMember
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 EntityMember
impl RefUnwindSafe for EntityMember
impl Send for EntityMember
impl Sync for EntityMember
impl Unpin for EntityMember
impl UnsafeUnpin for EntityMember
impl UnwindSafe for EntityMember
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