pub struct WlHashResult {
pub vertex_hashes: Vec<u64>,
pub graph_hash: u64,
pub iterations: u32,
}Expand description
Result of Weisfeiler-Lehman hashing.
Fields§
§vertex_hashes: Vec<u64>Per-vertex hash after the final iteration.
graph_hash: u64Graph-level hash (aggregation of sorted vertex hashes).
iterations: u32Number of iterations actually performed (may be less than
max_iterations if colors stabilized early).
Trait Implementations§
Source§impl Clone for WlHashResult
impl Clone for WlHashResult
Source§fn clone(&self) -> WlHashResult
fn clone(&self) -> WlHashResult
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 WlHashResult
impl Debug for WlHashResult
Source§impl PartialEq for WlHashResult
impl PartialEq for WlHashResult
impl Eq for WlHashResult
impl StructuralPartialEq for WlHashResult
Auto Trait Implementations§
impl Freeze for WlHashResult
impl RefUnwindSafe for WlHashResult
impl Send for WlHashResult
impl Sync for WlHashResult
impl Unpin for WlHashResult
impl UnsafeUnpin for WlHashResult
impl UnwindSafe for WlHashResult
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