pub trait MarkedDigestOutput: Default + Copy + AsRef<[u8]> + AsMut<[u8]> + ByteFormat<Error = SerError> {
    // Required method
    fn size(&self) -> usize;

    // Provided methods
    fn reversed(&self) -> Self { ... }
    fn from_be_hex(be: &str) -> SerResult<Self> { ... }
    fn to_be_hex(&self) -> String { ... }
    fn as_mut_slice(&mut self) -> &mut [u8]  { ... }
    fn as_slice(&self) -> &[u8]  { ... }
}
Expand description

Convenience interface for hash function outputs, particularly marked digest outputs

Required Methods§

source

fn size(&self) -> usize

Returns the number of bytes in the digest

Provided Methods§

source

fn reversed(&self) -> Self

Return a clone in opposite byte order

source

fn from_be_hex(be: &str) -> SerResult<Self>

Deserialize to BE hex

source

fn to_be_hex(&self) -> String

Convert to BE hex

source

fn as_mut_slice(&mut self) -> &mut [u8]

Use as a mutable slice

source

fn as_slice(&self) -> &[u8]

Use as a slice

Implementors§