pub struct CorrelationReport {
pub clusters: Vec<Cluster>,
pub unlinked: Vec<String>,
pub without_profile: Vec<String>,
}Expand description
Result of correlating a scan’s outcomes.
Fields§
§clusters: Vec<Cluster>Clusters of size ≥ 2 (actual cross-site links).
unlinked: Vec<String>Found accounts that carry profile data but linked to nothing.
without_profile: Vec<String>Found accounts with no profile data to correlate on.
Trait Implementations§
Source§impl Clone for CorrelationReport
impl Clone for CorrelationReport
Source§fn clone(&self) -> CorrelationReport
fn clone(&self) -> CorrelationReport
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 CorrelationReport
impl Debug for CorrelationReport
Source§impl Default for CorrelationReport
impl Default for CorrelationReport
Source§fn default() -> CorrelationReport
fn default() -> CorrelationReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CorrelationReport
impl RefUnwindSafe for CorrelationReport
impl Send for CorrelationReport
impl Sync for CorrelationReport
impl Unpin for CorrelationReport
impl UnsafeUnpin for CorrelationReport
impl UnwindSafe for CorrelationReport
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