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