pub struct HubnessScore {
pub item_id: String,
pub neighbor_hits: usize,
pub normalized_score: f32,
}Expand description
Per-item hubness score (archived copy — the live one is in hubness.rs).
Fields§
§item_id: String§neighbor_hits: usize§normalized_score: f32Trait Implementations§
Source§impl Clone for HubnessScore
impl Clone for HubnessScore
Source§fn clone(&self) -> HubnessScore
fn clone(&self) -> HubnessScore
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 HubnessScore
impl Debug for HubnessScore
Source§impl PartialEq for HubnessScore
impl PartialEq for HubnessScore
impl StructuralPartialEq for HubnessScore
Auto Trait Implementations§
impl Freeze for HubnessScore
impl RefUnwindSafe for HubnessScore
impl Send for HubnessScore
impl Sync for HubnessScore
impl Unpin for HubnessScore
impl UnsafeUnpin for HubnessScore
impl UnwindSafe for HubnessScore
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