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