pub struct PlatformAccountFill {
pub fill_id: String,
pub side: PlatformTradeSide,
pub price_atoms: String,
pub size_atoms: String,
pub fee_quote_atoms: String,
pub fee_is_final: bool,
pub settlement: PlatformSettlementState,
pub executed_at_ms: u64,
pub confirmed_at_ms: Option<u64>,
pub transaction_id: Option<String>,
pub realized_pnl_quote_atoms: String,
}Fields§
§fill_id: String§side: PlatformTradeSide§price_atoms: String§size_atoms: String§fee_quote_atoms: String§fee_is_final: bool§settlement: PlatformSettlementState§executed_at_ms: u64§confirmed_at_ms: Option<u64>§transaction_id: Option<String>§realized_pnl_quote_atoms: StringTrait Implementations§
Source§impl Clone for PlatformAccountFill
impl Clone for PlatformAccountFill
Source§fn clone(&self) -> PlatformAccountFill
fn clone(&self) -> PlatformAccountFill
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PlatformAccountFill
impl Debug for PlatformAccountFill
Source§impl<'de> Deserialize<'de> for PlatformAccountFill
impl<'de> Deserialize<'de> for PlatformAccountFill
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<PlatformAccountFill, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<PlatformAccountFill, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for PlatformAccountFill
Source§impl PartialEq for PlatformAccountFill
impl PartialEq for PlatformAccountFill
Source§impl Serialize for PlatformAccountFill
impl Serialize for PlatformAccountFill
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for PlatformAccountFill
Auto Trait Implementations§
impl Freeze for PlatformAccountFill
impl RefUnwindSafe for PlatformAccountFill
impl Send for PlatformAccountFill
impl Sync for PlatformAccountFill
impl Unpin for PlatformAccountFill
impl UnsafeUnpin for PlatformAccountFill
impl UnwindSafe for PlatformAccountFill
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