pub struct ClosedOrders {
pub closed: HashMap<String, ClosedOrder>,
pub count: i64,
}
Expand description
Response type for mapping order ids to orders
Fields§
§closed: HashMap<String, ClosedOrder>
§count: i64
Trait Implementations§
Source§impl Clone for ClosedOrders
impl Clone for ClosedOrders
Source§fn clone(&self) -> ClosedOrders
fn clone(&self) -> ClosedOrders
Returns a copy 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 moreSource§impl Debug for ClosedOrders
impl Debug for ClosedOrders
Source§impl<'de> Deserialize<'de> for ClosedOrders
impl<'de> Deserialize<'de> for ClosedOrders
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 ClosedOrders
impl PartialEq for ClosedOrders
impl StructuralPartialEq for ClosedOrders
Auto Trait Implementations§
impl Freeze for ClosedOrders
impl RefUnwindSafe for ClosedOrders
impl Send for ClosedOrders
impl Sync for ClosedOrders
impl Unpin for ClosedOrders
impl UnwindSafe for ClosedOrders
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