blockchain-base 0.1.0

Implementation of a generic block of a Blockchain with minimal dependencies
Documentation
1
2
3
4
5
6
/// A trait for hashing an object.
pub trait Hashable {
    /// Calculate the hash of an object and store the result
    /// in their internal structures
    fn calculate_hash (&mut self);
}