Trait merkle::Hashable [] [src]

pub trait Hashable {
    fn to_bytes(&self) -> Vec<u8>;
}

By definition, data in the Merkle Tree must implement Hashable

Required Methods

fn to_bytes(&self) -> Vec<u8>

Implementors