Trait frame_support::Hashable[][src]

pub trait Hashable: Sized {
    fn blake2_128(&self) -> [u8; 16];
fn blake2_256(&self) -> [u8; 32];
fn blake2_128_concat(&self) -> Vec<u8>

Notable traits for Vec<u8, Global>

impl Write for Vec<u8, Global>
;
fn twox_128(&self) -> [u8; 16];
fn twox_256(&self) -> [u8; 32];
fn twox_64_concat(&self) -> Vec<u8>

Notable traits for Vec<u8, Global>

impl Write for Vec<u8, Global>
;
fn identity(&self) -> Vec<u8>

Notable traits for Vec<u8, Global>

impl Write for Vec<u8, Global>
; }

Required methods

fn blake2_128(&self) -> [u8; 16][src]

fn blake2_256(&self) -> [u8; 32][src]

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

Notable traits for Vec<u8, Global>

impl Write for Vec<u8, Global>
[src]

fn twox_128(&self) -> [u8; 16][src]

fn twox_256(&self) -> [u8; 32][src]

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

Notable traits for Vec<u8, Global>

impl Write for Vec<u8, Global>
[src]

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

Notable traits for Vec<u8, Global>

impl Write for Vec<u8, Global>
[src]

Loading content...

Implementors

impl<T: Codec> Hashable for T[src]

Loading content...