pub trait RawTransactionPayload: AsRef<[u8]> + From<Vec<u8>> + Into<Vec<u8>> {
    // Provided method
    fn as_slice(&self) -> &[u8]  { ... }
}

Provided Methods§

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

Object Safety§

This trait is not object safe.

Implementors§