/// Address in RAM.
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Default)]pubstructAddress(u64);implAddress{/// Create a new address.
#[allow(unused)]pub(crate)fnnew(value:u64)->Self{Self(value)}/// Get the next address.
pub(crate)fnnext(&self)->Self{Self(self.0+1)}}