pub struct PolymarketMakerOrder {
pub asset_id: Ustr,
pub maker_address: String,
pub matched_amount: Decimal,
pub order_id: String,
pub outcome: PolymarketOutcome,
pub owner: String,
pub price: Decimal,
pub side: Option<PolymarketOrderSide>,
}Expand description
A maker order included in trade messages.
Used by both REST trade reports and WebSocket user trade updates
to describe each maker-side fill in a match. The side field is
optional because some trade-event payloads (notably user-channel WS
fills) may omit it; CLOB V2 REST trade responses always include it.
fee_rate_bps is intentionally not modeled. The wire payload is unstable
(the user-channel WS sometimes sends "") and the field is unused: maker
fills always pay zero commission per Polymarket’s fee policy. The official
rs-clob-client-v2 MakerOrder shape also omits it.
Fields§
§asset_id: Ustr§maker_address: String§matched_amount: Decimal§order_id: String§outcome: PolymarketOutcome§owner: String§price: Decimal§side: Option<PolymarketOrderSide>Trait Implementations§
Source§impl Clone for PolymarketMakerOrder
impl Clone for PolymarketMakerOrder
Source§fn clone(&self) -> PolymarketMakerOrder
fn clone(&self) -> PolymarketMakerOrder
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 PolymarketMakerOrder
impl Debug for PolymarketMakerOrder
Source§impl<'de> Deserialize<'de> for PolymarketMakerOrder
impl<'de> Deserialize<'de> for PolymarketMakerOrder
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 PolymarketMakerOrder
impl PartialEq for PolymarketMakerOrder
Source§impl Serialize for PolymarketMakerOrder
impl Serialize for PolymarketMakerOrder
impl Eq for PolymarketMakerOrder
impl StructuralPartialEq for PolymarketMakerOrder
Auto Trait Implementations§
impl Freeze for PolymarketMakerOrder
impl RefUnwindSafe for PolymarketMakerOrder
impl Send for PolymarketMakerOrder
impl Sync for PolymarketMakerOrder
impl Unpin for PolymarketMakerOrder
impl UnsafeUnpin for PolymarketMakerOrder
impl UnwindSafe for PolymarketMakerOrder
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