Trait coins_core::hashes::MarkedDigestOutput
source · 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§
Provided Methods§
sourcefn from_be_hex(be: &str) -> SerResult<Self>
fn from_be_hex(be: &str) -> SerResult<Self>
Deserialize to BE hex
sourcefn as_mut_slice(&mut self) -> &mut [u8] ⓘ
fn as_mut_slice(&mut self) -> &mut [u8] ⓘ
Use as a mutable slice
Object Safety§
This trait is not object safe.