pub struct CancelAllResponse {
pub event: String,
pub req_id: Option<i64>,
pub count: i64,
pub status: OrderRequestStatus,
pub error_message: Option<String>,
}
Expand description
Response from requesting to cancel all orders
Fields§
§event: String
§req_id: Option<i64>
§count: i64
§status: OrderRequestStatus
§error_message: Option<String>
Trait Implementations§
Source§impl Debug for CancelAllResponse
impl Debug for CancelAllResponse
Source§impl<'de> Deserialize<'de> for CancelAllResponse
impl<'de> Deserialize<'de> for CancelAllResponse
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 CancelAllResponse
impl PartialEq for CancelAllResponse
impl StructuralPartialEq for CancelAllResponse
Auto Trait Implementations§
impl Freeze for CancelAllResponse
impl RefUnwindSafe for CancelAllResponse
impl Send for CancelAllResponse
impl Sync for CancelAllResponse
impl Unpin for CancelAllResponse
impl UnwindSafe for CancelAllResponse
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