Trait diem_crypto::hash::TestOnlyHash
source · pub trait TestOnlyHash {
// Required method
fn test_only_hash(&self) -> HashValue;
}
Expand description
Provides a test_only_hash() method that can be used in tests on types that implement
serde::Serialize
.
Example
use diem_crypto::hash::TestOnlyHash;
b"hello world".test_only_hash();
Required Methods§
sourcefn test_only_hash(&self) -> HashValue
fn test_only_hash(&self) -> HashValue
Generates a hash used only for tests.