pub struct Order {Show 13 fields
pub order_id: String,
pub creation_timestamp: DateTime<Utc>,
pub expiration_timestamp: DateTime<Utc>,
pub completed_timestamp: DateTime<Utc>,
pub order_type: OrderType,
pub state: String,
pub limit_price: String,
pub limit_volume: String,
pub base: String,
pub counter: String,
pub fee_base: String,
pub fee_counter: String,
pub pair: String,
}Fields§
§order_id: String§creation_timestamp: DateTime<Utc>§expiration_timestamp: DateTime<Utc>§completed_timestamp: DateTime<Utc>§order_type: OrderType§state: String§limit_price: String§limit_volume: String§base: String§counter: String§fee_base: String§fee_counter: String§pair: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for Order
impl<'de> Deserialize<'de> for Order
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
Auto Trait Implementations§
impl Freeze for Order
impl RefUnwindSafe for Order
impl Send for Order
impl Sync for Order
impl Unpin for Order
impl UnwindSafe for Order
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