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