users_merkle::Hasher;/// Blake3-256 implementation of the [`rs_merkle::Hasher`] trait.
////// See documentation of crate [`blake3`].
#[derive(Clone, Copy, Debug)]pubstructBlake3;implHasher forBlake3{typeHash=[u8;blake3::OUT_LEN];fnhash(data:&[u8])->Self::Hash{blake3::hash(data).into()}}