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