Trait Address

Source
pub trait Address {
    // Required method
    fn to_be_bytes(&self) -> Vec<u8> ;
}
Expand description

Allows conversion of an address into a vector of big-endian bytes

Required Methods§

Source

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

Returns the bytes of the address value in big-endian

Implementors§