Struct move_compiler::shared::NumericalAddress
source · [−]pub struct NumericalAddress { /* private fields */ }
Expand description
Numerical address represents non-named address values or the assigned value of a named address
Implementations
sourceimpl NumericalAddress
impl NumericalAddress
pub const DEFAULT_ERROR_ADDRESS: NumericalAddress
pub const fn new(bytes: [u8; 16], format: NumberFormat) -> NumericalAddress
pub fn into_inner(self) -> AccountAddress
pub fn into_bytes(self) -> [u8; 16]
pub fn parse_str(s: &str) -> Result<NumericalAddress, String>
Trait Implementations
sourceimpl Clone for NumericalAddress
impl Clone for NumericalAddress
sourcefn clone(&self) -> NumericalAddress
fn clone(&self) -> NumericalAddress
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for NumericalAddress
impl Debug for NumericalAddress
sourceimpl Display for NumericalAddress
impl Display for NumericalAddress
sourceimpl Hash for NumericalAddress
impl Hash for NumericalAddress
sourceimpl Ord for NumericalAddress
impl Ord for NumericalAddress
sourceimpl PartialEq<NumericalAddress> for NumericalAddress
impl PartialEq<NumericalAddress> for NumericalAddress
sourceimpl PartialOrd<NumericalAddress> for NumericalAddress
impl PartialOrd<NumericalAddress> for NumericalAddress
sourcefn partial_cmp(&self, other: &NumericalAddress) -> Option<Ordering>
fn partial_cmp(&self, other: &NumericalAddress) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
sourceimpl UpperHex for NumericalAddress
impl UpperHex for NumericalAddress
impl Copy for NumericalAddress
impl Eq for NumericalAddress
Auto Trait Implementations
impl RefUnwindSafe for NumericalAddress
impl Send for NumericalAddress
impl Sync for NumericalAddress
impl Unpin for NumericalAddress
impl UnwindSafe for NumericalAddress
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> CallHasher for T where
T: Hash + ?Sized,
impl<T> CallHasher for T where
T: Hash + ?Sized,
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.
sourceimpl<T> ToHex for T where
T: AsRef<[u8]>,
impl<T> ToHex for T where
T: AsRef<[u8]>,
sourcefn encode_hex<U>(&self) -> U where
U: FromIterator<char>,
fn encode_hex<U>(&self) -> U where
U: FromIterator<char>,
Encode the hex strict representing self
into the result. Lower case
letters are used (e.g. f9b4ca
) Read more
sourcefn encode_hex_upper<U>(&self) -> U where
U: FromIterator<char>,
fn encode_hex_upper<U>(&self) -> U where
U: FromIterator<char>,
Encode the hex strict representing self
into the result. Upper case
letters are used (e.g. F9B4CA
) Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more