pub struct AlgoFuturesNewOrderVpResponse {
pub client_algo_id: String,
pub code: i64,
pub msg: String,
pub success: bool,
}
Expand description
AlgoFuturesNewOrderVpResponse
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 AlgoFuturesNewOrderVpResponse
impl Clone for AlgoFuturesNewOrderVpResponse
Source§fn clone(&self) -> AlgoFuturesNewOrderVpResponse
fn clone(&self) -> AlgoFuturesNewOrderVpResponse
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 AlgoFuturesNewOrderVpResponse
impl<'de> Deserialize<'de> for AlgoFuturesNewOrderVpResponse
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<&AlgoFuturesNewOrderVpResponse> for AlgoFuturesNewOrderVpResponse
impl From<&AlgoFuturesNewOrderVpResponse> for AlgoFuturesNewOrderVpResponse
Source§fn from(value: &AlgoFuturesNewOrderVpResponse) -> Self
fn from(value: &AlgoFuturesNewOrderVpResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for AlgoFuturesNewOrderVpResponse
impl RefUnwindSafe for AlgoFuturesNewOrderVpResponse
impl Send for AlgoFuturesNewOrderVpResponse
impl Sync for AlgoFuturesNewOrderVpResponse
impl Unpin for AlgoFuturesNewOrderVpResponse
impl UnwindSafe for AlgoFuturesNewOrderVpResponse
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