pub struct RankedNeighbor {Show 13 fields
pub rank: usize,
pub node_id: String,
pub kind: String,
pub label: String,
pub score: i64,
pub depth: Option<usize>,
pub edge_kinds: Vec<String>,
pub community_co_membership: bool,
pub semantic_relation: bool,
pub source_handle_fresh: bool,
pub duplicate_name_precision: f64,
pub handle_coverage_pct: f64,
pub reasons: Vec<String>,
}Fields§
§rank: usize§node_id: String§kind: String§label: String§score: i64§depth: Option<usize>§edge_kinds: Vec<String>§community_co_membership: bool§semantic_relation: bool§source_handle_fresh: bool§duplicate_name_precision: f64§handle_coverage_pct: f64§reasons: Vec<String>Trait Implementations§
Source§impl Clone for RankedNeighbor
impl Clone for RankedNeighbor
Source§fn clone(&self) -> RankedNeighbor
fn clone(&self) -> RankedNeighbor
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 RankedNeighbor
impl Debug for RankedNeighbor
Source§impl PartialEq for RankedNeighbor
impl PartialEq for RankedNeighbor
Source§fn eq(&self, other: &RankedNeighbor) -> bool
fn eq(&self, other: &RankedNeighbor) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RankedNeighbor
impl Serialize for RankedNeighbor
impl StructuralPartialEq for RankedNeighbor
Auto Trait Implementations§
impl Freeze for RankedNeighbor
impl RefUnwindSafe for RankedNeighbor
impl Send for RankedNeighbor
impl Sync for RankedNeighbor
impl Unpin for RankedNeighbor
impl UnsafeUnpin for RankedNeighbor
impl UnwindSafe for RankedNeighbor
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