pub trait AddressValue {
    type V: Copy + PartialEq + Eq + PartialOrd + Ord + Not<Output = Self::V> + Add<Output = Self::V> + Sub<Output = Self::V> + BitAnd<Output = Self::V> + BitOr<Output = Self::V> + Debug + From<u8>;

    fn zero() -> Self::V { ... }
    fn one() -> Self::V { ... }
}
Expand description

Simple helper trait used to store a raw address value.

Required Associated Types

Type of the raw address value.

Provided Methods

Return the value zero, coerced into the value type Self::V

Return the value zero, coerced into the value type Self::V

Implementors