//! Defines the `BfsCallback` trait.
/// Defines callback functions that run during the BFS.
pubtraitBfsCallback{/// Called when a new node is visited.
fnnew_state(&mutself, depth:usize, state:u64);/// Called when a chunk of the bit array has finished processing.
fnend_of_chunk(&self, depth:usize, chunk_idx:usize);}