pub struct RandomWalkStats {
pub nodes_affected: usize,
pub edges_removed: usize,
pub edges_added: usize,
pub walks_performed: usize,
pub hitting_time_delta: f32,
}Expand description
Statistics from random walk repair.
Fields§
§nodes_affected: usizeNodes affected by deletion
edges_removed: usizeEdges removed
edges_added: usizeEdges added
walks_performed: usizeRandom walks performed
hitting_time_delta: f32Estimated hitting time change
Trait Implementations§
Source§impl Clone for RandomWalkStats
impl Clone for RandomWalkStats
Source§fn clone(&self) -> RandomWalkStats
fn clone(&self) -> RandomWalkStats
Returns a duplicate of the value. Read more
1.0.0 · 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 RandomWalkStats
impl Debug for RandomWalkStats
Source§impl Default for RandomWalkStats
impl Default for RandomWalkStats
Source§fn default() -> RandomWalkStats
fn default() -> RandomWalkStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RandomWalkStats
impl RefUnwindSafe for RandomWalkStats
impl Send for RandomWalkStats
impl Sync for RandomWalkStats
impl Unpin for RandomWalkStats
impl UnsafeUnpin for RandomWalkStats
impl UnwindSafe for RandomWalkStats
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