pub struct LighterPosition {Show 17 fields
pub market_id: i16,
pub symbol: Ustr,
pub initial_margin_fraction: Decimal,
pub open_order_count: i64,
pub pending_order_count: i64,
pub position_tied_order_count: i64,
pub sign: i8,
pub position: Decimal,
pub avg_entry_price: Decimal,
pub position_value: Decimal,
pub unrealized_pnl: Decimal,
pub realized_pnl: Decimal,
pub liquidation_price: Decimal,
pub total_funding_paid_out: Option<Decimal>,
pub margin_mode: i32,
pub allocated_margin: Decimal,
pub total_discount: Option<Decimal>,
}Fields§
§market_id: i16§symbol: Ustr§initial_margin_fraction: Decimal§open_order_count: i64§pending_order_count: i64§position_tied_order_count: i64§sign: i8§position: Decimal§avg_entry_price: Decimal§position_value: Decimal§unrealized_pnl: Decimal§realized_pnl: Decimal§liquidation_price: Decimal§total_funding_paid_out: Option<Decimal>§margin_mode: i32§allocated_margin: Decimal§total_discount: Option<Decimal>Trait Implementations§
Source§impl Clone for LighterPosition
impl Clone for LighterPosition
Source§fn clone(&self) -> LighterPosition
fn clone(&self) -> LighterPosition
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 LighterPosition
impl Debug for LighterPosition
Source§impl<'de> Deserialize<'de> for LighterPosition
impl<'de> Deserialize<'de> for LighterPosition
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 LighterPosition
impl PartialEq for LighterPosition
Source§fn eq(&self, other: &LighterPosition) -> bool
fn eq(&self, other: &LighterPosition) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LighterPosition
impl Serialize for LighterPosition
impl StructuralPartialEq for LighterPosition
Auto Trait Implementations§
impl Freeze for LighterPosition
impl RefUnwindSafe for LighterPosition
impl Send for LighterPosition
impl Sync for LighterPosition
impl Unpin for LighterPosition
impl UnsafeUnpin for LighterPosition
impl UnwindSafe for LighterPosition
Blanket Implementations§
impl<T> Allocation for T
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
§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