usecrate::{OrderId, OrderKind};/// Represents a command to cancel an existing order
#[cfg_attr(feature ="serde",derive(serde::Serialize, serde::Deserialize))]#[derive(Debug, Clone, Copy, PartialEq, Eq)]pubstructCancelCmd{/// The ID of the order to cancel
puborder_id: OrderId,
/// The type of the order to cancel
puborder_kind: OrderKind,
}