pub struct AlgoFuturesNewOrderTwapResponse {
pub client_algo_id: String,
pub code: i64,
pub msg: String,
pub success: bool,
}
Expand description
AlgoFuturesNewOrderTwapResponse
JSON schema
{
"type": "object",
"required": [
"clientAlgoId",
"code",
"msg",
"success"
],
"properties": {
"clientAlgoId": {
"examples": [
"00358ce6a268403398bd34eaa36dffe7"
],
"type": "string"
},
"code": {
"examples": [
0
],
"type": "integer",
"format": "int64"
},
"msg": {
"examples": [
"OK"
],
"type": "string"
},
"success": {
"examples": [
true
],
"type": "boolean"
}
}
}
Fields§
§client_algo_id: String
§code: i64
§msg: String
§success: bool
Trait Implementations§
Source§impl Clone for AlgoFuturesNewOrderTwapResponse
impl Clone for AlgoFuturesNewOrderTwapResponse
Source§fn clone(&self) -> AlgoFuturesNewOrderTwapResponse
fn clone(&self) -> AlgoFuturesNewOrderTwapResponse
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 AlgoFuturesNewOrderTwapResponse
impl<'de> Deserialize<'de> for AlgoFuturesNewOrderTwapResponse
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<&AlgoFuturesNewOrderTwapResponse> for AlgoFuturesNewOrderTwapResponse
impl From<&AlgoFuturesNewOrderTwapResponse> for AlgoFuturesNewOrderTwapResponse
Source§fn from(value: &AlgoFuturesNewOrderTwapResponse) -> Self
fn from(value: &AlgoFuturesNewOrderTwapResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AlgoFuturesNewOrderTwapResponse
impl RefUnwindSafe for AlgoFuturesNewOrderTwapResponse
impl Send for AlgoFuturesNewOrderTwapResponse
impl Sync for AlgoFuturesNewOrderTwapResponse
impl Unpin for AlgoFuturesNewOrderTwapResponse
impl UnwindSafe for AlgoFuturesNewOrderTwapResponse
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