pub struct PropertyTxData {
pub operation: PropertyOperation,
pub data: Vec<u8>,
pub recipient: Address,
}Expand description
Transaction data for SRC-86X operations
Fields§
§operation: PropertyOperation§data: Vec<u8>§recipient: AddressToken recipient address - the owner of the minted token
Trait Implementations§
Source§impl Clone for PropertyTxData
impl Clone for PropertyTxData
Source§fn clone(&self) -> PropertyTxData
fn clone(&self) -> PropertyTxData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PropertyTxData
impl Debug for PropertyTxData
Source§impl<'de> Deserialize<'de> for PropertyTxData
impl<'de> Deserialize<'de> for PropertyTxData
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 PartialEq for PropertyTxData
impl PartialEq for PropertyTxData
Source§fn eq(&self, other: &PropertyTxData) -> bool
fn eq(&self, other: &PropertyTxData) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PropertyTxData
impl Serialize for PropertyTxData
impl Eq for PropertyTxData
impl StructuralPartialEq for PropertyTxData
Auto Trait Implementations§
impl Freeze for PropertyTxData
impl RefUnwindSafe for PropertyTxData
impl Send for PropertyTxData
impl Sync for PropertyTxData
impl Unpin for PropertyTxData
impl UnsafeUnpin for PropertyTxData
impl UnwindSafe for PropertyTxData
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