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