pub struct PolymarketOpenOrder {Show 15 fields
pub associate_trades: Option<Vec<String>>,
pub id: String,
pub status: PolymarketOrderStatus,
pub market: Ustr,
pub original_size: Decimal,
pub outcome: PolymarketOutcome,
pub maker_address: String,
pub owner: String,
pub price: Decimal,
pub side: PolymarketOrderSide,
pub size_matched: Decimal,
pub asset_id: Ustr,
pub expiration: Option<String>,
pub order_type: PolymarketOrderType,
pub created_at: u64,
}Expand description
An active order returned by REST GET /orders.
References: https://docs.polymarket.com/#get-orders
Fields§
§associate_trades: Option<Vec<String>>§id: String§status: PolymarketOrderStatus§market: Ustr§original_size: Decimal§outcome: PolymarketOutcome§maker_address: String§owner: String§price: Decimal§side: PolymarketOrderSide§size_matched: Decimal§asset_id: Ustr§expiration: Option<String>§order_type: PolymarketOrderType§created_at: u64Trait Implementations§
Source§impl Clone for PolymarketOpenOrder
impl Clone for PolymarketOpenOrder
Source§fn clone(&self) -> PolymarketOpenOrder
fn clone(&self) -> PolymarketOpenOrder
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 moreSource§impl Debug for PolymarketOpenOrder
impl Debug for PolymarketOpenOrder
Source§impl<'de> Deserialize<'de> for PolymarketOpenOrder
impl<'de> Deserialize<'de> for PolymarketOpenOrder
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 PolymarketOpenOrder
impl PartialEq for PolymarketOpenOrder
Source§impl Serialize for PolymarketOpenOrder
impl Serialize for PolymarketOpenOrder
impl Eq for PolymarketOpenOrder
impl StructuralPartialEq for PolymarketOpenOrder
Auto Trait Implementations§
impl Freeze for PolymarketOpenOrder
impl RefUnwindSafe for PolymarketOpenOrder
impl Send for PolymarketOpenOrder
impl Sync for PolymarketOpenOrder
impl Unpin for PolymarketOpenOrder
impl UnsafeUnpin for PolymarketOpenOrder
impl UnwindSafe for PolymarketOpenOrder
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more