pub enum TransactionArgument {
U8(u8),
U64(u64),
U128(u128),
Address(AccountAddress),
U8Vector(Vec<u8>),
Bool(bool),
}Variants§
Trait Implementations§
Source§impl Clone for TransactionArgument
impl Clone for TransactionArgument
Source§fn clone(&self) -> TransactionArgument
fn clone(&self) -> TransactionArgument
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 TransactionArgument
impl Debug for TransactionArgument
Source§impl<'de> Deserialize<'de> for TransactionArgument
impl<'de> Deserialize<'de> for TransactionArgument
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for TransactionArgument
impl Hash for TransactionArgument
Source§impl PartialEq for TransactionArgument
impl PartialEq for TransactionArgument
Source§impl Serialize for TransactionArgument
impl Serialize for TransactionArgument
impl Eq for TransactionArgument
impl StructuralPartialEq for TransactionArgument
Auto Trait Implementations§
impl Freeze for TransactionArgument
impl RefUnwindSafe for TransactionArgument
impl Send for TransactionArgument
impl Sync for TransactionArgument
impl Unpin for TransactionArgument
impl UnsafeUnpin for TransactionArgument
impl UnwindSafe for TransactionArgument
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