Enum move_ir_types::ast::CopyableVal_
source · [−]pub enum CopyableVal_ {
Address(AccountAddress),
U8(u8),
U64(u64),
U128(u128),
Bool(bool),
ByteArray(Vec<u8>),
}
Expand description
Bottom of the value hierarchy. These values can be trivially copyable and stored in statedb as a single entry.
Variants
Address(AccountAddress)
An address in the global storage
U8(u8)
An unsigned 8-bit integer
U64(u64)
An unsigned 64-bit integer
U128(u128)
An unsigned 128-bit integer
Bool(bool)
true or false
ByteArray(Vec<u8>)
b"<bytes>"
Trait Implementations
sourceimpl Clone for CopyableVal_
impl Clone for CopyableVal_
sourcefn clone(&self) -> CopyableVal_
fn clone(&self) -> CopyableVal_
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 CopyableVal_
impl Debug for CopyableVal_
sourceimpl Display for CopyableVal_
impl Display for CopyableVal_
sourceimpl PartialEq<CopyableVal_> for CopyableVal_
impl PartialEq<CopyableVal_> for CopyableVal_
sourcefn eq(&self, other: &CopyableVal_) -> bool
fn eq(&self, other: &CopyableVal_) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &CopyableVal_) -> bool
fn ne(&self, other: &CopyableVal_) -> bool
This method tests for !=
.
impl StructuralPartialEq for CopyableVal_
Auto Trait Implementations
impl RefUnwindSafe for CopyableVal_
impl Send for CopyableVal_
impl Sync for CopyableVal_
impl Unpin for CopyableVal_
impl UnwindSafe for CopyableVal_
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> 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)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more