[][src]Trait blockchainblock::Hashable

pub trait Hashable {
    fn calculate_hash(&mut self);
}

A trait for hashing an object.

Required methods

fn calculate_hash(&mut self)

Calculate the hash of an object and store the result in their internal structures

Loading content...

Implementors

impl<'a, T> Hashable for BlockchainBlock<'a, T> where
    T: Byteable
[src]

Loading content...