pub struct OrderTrackingInfo {
pub created_at: Instant,
pub pair: String,
pub client_order_id: Option<String>,
}Expand description
Information tracked for each order.
Fields§
§created_at: InstantWhen the order was placed.
pair: StringTrading pair for the order.
client_order_id: Option<String>Client order ID if provided.
Implementations§
Trait Implementations§
Source§impl Clone for OrderTrackingInfo
impl Clone for OrderTrackingInfo
Source§fn clone(&self) -> OrderTrackingInfo
fn clone(&self) -> OrderTrackingInfo
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 moreAuto Trait Implementations§
impl Freeze for OrderTrackingInfo
impl RefUnwindSafe for OrderTrackingInfo
impl Send for OrderTrackingInfo
impl Sync for OrderTrackingInfo
impl Unpin for OrderTrackingInfo
impl UnwindSafe for OrderTrackingInfo
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