pub trait AddressX32: Address {
    fn new_u32(addr: u32) -> Self;
    fn as_u32(&self) -> u32;
}

Required methods

Implementors