pub struct TransferNonFungibleTokenResult {
pub token_transfer_id: Option<String>,
pub success: Option<bool>,
}
Expand description
Data returned from a successful call to Transfer Non-Fungible Token API method.
Fields§
§token_transfer_id: Option<String>
The non-fungible token transfer ID.
Used for retrieving the progress of an asynchronous non-fungible token transfer.
Note: only returned when doing processing asynchronously.
success: Option<bool>
The value true
indicating that the non-fungible token has been successfully
transferred.
Note: not returned when doing processing asynchronously.
Trait Implementations§
Source§impl Clone for TransferNonFungibleTokenResult
impl Clone for TransferNonFungibleTokenResult
Source§fn clone(&self) -> TransferNonFungibleTokenResult
fn clone(&self) -> TransferNonFungibleTokenResult
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<'de> Deserialize<'de> for TransferNonFungibleTokenResult
impl<'de> Deserialize<'de> for TransferNonFungibleTokenResult
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 TransferNonFungibleTokenResult
impl PartialEq for TransferNonFungibleTokenResult
Source§fn eq(&self, other: &TransferNonFungibleTokenResult) -> bool
fn eq(&self, other: &TransferNonFungibleTokenResult) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for TransferNonFungibleTokenResult
Auto Trait Implementations§
impl Freeze for TransferNonFungibleTokenResult
impl RefUnwindSafe for TransferNonFungibleTokenResult
impl Send for TransferNonFungibleTokenResult
impl Sync for TransferNonFungibleTokenResult
impl Unpin for TransferNonFungibleTokenResult
impl UnwindSafe for TransferNonFungibleTokenResult
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