pub struct PostSubAccountFutureAssetTransferResponse {
pub success: bool,
pub txn_id: String,
}
Expand description
PostSubAccountFutureAssetTransferResponse
JSON schema
{
"type": "object",
"required": [
"success",
"txnId"
],
"properties": {
"success": {
"type": "boolean"
},
"txnId": {
"examples": [
"2934662589"
],
"type": "string"
}
}
}
Fields§
§success: bool
§txn_id: String
Trait Implementations§
Source§impl Clone for PostSubAccountFutureAssetTransferResponse
impl Clone for PostSubAccountFutureAssetTransferResponse
Source§fn clone(&self) -> PostSubAccountFutureAssetTransferResponse
fn clone(&self) -> PostSubAccountFutureAssetTransferResponse
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 PostSubAccountFutureAssetTransferResponse
impl<'de> Deserialize<'de> for PostSubAccountFutureAssetTransferResponse
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 From<&PostSubAccountFutureAssetTransferResponse> for PostSubAccountFutureAssetTransferResponse
impl From<&PostSubAccountFutureAssetTransferResponse> for PostSubAccountFutureAssetTransferResponse
Source§fn from(value: &PostSubAccountFutureAssetTransferResponse) -> Self
fn from(value: &PostSubAccountFutureAssetTransferResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PostSubAccountFutureAssetTransferResponse
impl RefUnwindSafe for PostSubAccountFutureAssetTransferResponse
impl Send for PostSubAccountFutureAssetTransferResponse
impl Sync for PostSubAccountFutureAssetTransferResponse
impl Unpin for PostSubAccountFutureAssetTransferResponse
impl UnwindSafe for PostSubAccountFutureAssetTransferResponse
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