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