pub enum StackValue {
Address(Address),
Value(Value),
}
Variants§
Trait Implementations§
Source§impl Clone for StackValue
impl Clone for StackValue
Source§fn clone(&self) -> StackValue
fn clone(&self) -> StackValue
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for StackValue
impl Debug for StackValue
Source§impl From<&Address> for StackValue
impl From<&Address> for StackValue
Source§impl From<Address> for StackValue
impl From<Address> for StackValue
Source§impl From<Value> for StackValue
impl From<Value> for StackValue
Source§impl From<f32> for StackValue
impl From<f32> for StackValue
Source§impl PartialEq for StackValue
impl PartialEq for StackValue
impl StructuralPartialEq for StackValue
Auto Trait Implementations§
impl Freeze for StackValue
impl RefUnwindSafe for StackValue
impl Send for StackValue
impl Sync for StackValue
impl Unpin for StackValue
impl UnwindSafe for StackValue
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more