ai_hash 0.3.6

hashing helpers supporting sgd sharding
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Definition of the HasHash trait

use crate::AiHash;
use crate::HashType;

/// Anything which has an owned AiHashOf.
pub trait HasHash<T: HashType> {
    /// Get the hash by reference
    fn as_hash(&self) -> &AiHash<T>;

    /// Convert to the owned hash
    fn into_hash(self) -> AiHash<T>;
}