pub struct Cluster {
pub members: Vec<String>,
pub confidence: f64,
pub shared_name: Option<String>,
}Expand description
A group of accounts that likely belong to the same person.
Fields§
§members: Vec<String>Site names of the member accounts.
confidence: f64Mean linking score across the cluster’s edges, in 0..=1.
A normalised name shared by the whole cluster, if any.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Cluster
impl RefUnwindSafe for Cluster
impl Send for Cluster
impl Sync for Cluster
impl Unpin for Cluster
impl UnsafeUnpin for Cluster
impl UnwindSafe for Cluster
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