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§
Sourcefn to_be_bytes(&self) -> Vec<u8> ⓘ
fn to_be_bytes(&self) -> Vec<u8> ⓘ
Returns the bytes of the address value in big-endian