pub struct CancelConditionalOrderResponse {
pub conditional_order_id: Option<Uuid>,
pub message: Option<String>,
pub status: Option<String>,
}Expand description
CancelConditionalOrderResponse
JSON schema
{
"type": "object",
"properties": {
"conditionalOrderId": {
"description": "Conditional order UUID",
"type": [
"string",
"null"
],
"format": "uuid"
},
"message": {
"description": "Human-readable status message",
"type": [
"string",
"null"
]
},
"status": {
"description": "Result status",
"examples": [
"SUCCESS"
],
"type": [
"string",
"null"
]
}
}
}Fields§
§conditional_order_id: Option<Uuid>Conditional order UUID
message: Option<String>Human-readable status message
status: Option<String>Result status
Trait Implementations§
Source§impl Clone for CancelConditionalOrderResponse
impl Clone for CancelConditionalOrderResponse
Source§fn clone(&self) -> CancelConditionalOrderResponse
fn clone(&self) -> CancelConditionalOrderResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CancelConditionalOrderResponse
impl<'de> Deserialize<'de> for CancelConditionalOrderResponse
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
Auto Trait Implementations§
impl Freeze for CancelConditionalOrderResponse
impl RefUnwindSafe for CancelConditionalOrderResponse
impl Send for CancelConditionalOrderResponse
impl Sync for CancelConditionalOrderResponse
impl Unpin for CancelConditionalOrderResponse
impl UnsafeUnpin for CancelConditionalOrderResponse
impl UnwindSafe for CancelConditionalOrderResponse
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