pub struct CancelAllAfterResponse {
pub event: String,
pub req_id: Option<i64>,
pub status: OrderRequestStatus,
pub current_time: Option<String>,
pub trigger_time: Option<String>,
pub error_message: Option<String>,
}
Expand description
Response for cancelling all orders after a timeout
Fields§
§event: String
§req_id: Option<i64>
§status: OrderRequestStatus
§current_time: Option<String>
§trigger_time: Option<String>
§error_message: Option<String>
Trait Implementations§
Source§impl Debug for CancelAllAfterResponse
impl Debug for CancelAllAfterResponse
Source§impl<'de> Deserialize<'de> for CancelAllAfterResponse
impl<'de> Deserialize<'de> for CancelAllAfterResponse
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 PartialEq for CancelAllAfterResponse
impl PartialEq for CancelAllAfterResponse
impl StructuralPartialEq for CancelAllAfterResponse
Auto Trait Implementations§
impl Freeze for CancelAllAfterResponse
impl RefUnwindSafe for CancelAllAfterResponse
impl Send for CancelAllAfterResponse
impl Sync for CancelAllAfterResponse
impl Unpin for CancelAllAfterResponse
impl UnwindSafe for CancelAllAfterResponse
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