pub struct BybitWsAccountExecution {Show 28 fields
pub category: BybitProductType,
pub symbol: Ustr,
pub exec_fee: String,
pub exec_id: String,
pub exec_price: String,
pub exec_qty: String,
pub exec_type: BybitExecType,
pub exec_value: String,
pub is_maker: bool,
pub fee_rate: String,
pub trade_iv: String,
pub mark_iv: String,
pub block_trade_id: Ustr,
pub mark_price: String,
pub index_price: String,
pub underlying_price: String,
pub leaves_qty: String,
pub order_id: Ustr,
pub order_link_id: Ustr,
pub order_price: String,
pub order_qty: String,
pub order_type: BybitOrderType,
pub side: BybitOrderSide,
pub exec_time: String,
pub is_leverage: String,
pub closed_size: String,
pub seq: i64,
pub stop_order_type: BybitStopOrderType,
}Expand description
Private execution (fill) stream payload.
Fields§
§category: BybitProductType§symbol: Ustr§exec_fee: String§exec_id: String§exec_price: String§exec_qty: String§exec_type: BybitExecType§exec_value: String§is_maker: bool§fee_rate: String§trade_iv: String§mark_iv: String§block_trade_id: Ustr§mark_price: String§index_price: String§underlying_price: String§leaves_qty: String§order_id: Ustr§order_link_id: Ustr§order_price: String§order_qty: String§order_type: BybitOrderType§side: BybitOrderSide§exec_time: String§is_leverage: String§closed_size: String§seq: i64§stop_order_type: BybitStopOrderTypeTrait Implementations§
Source§impl Clone for BybitWsAccountExecution
impl Clone for BybitWsAccountExecution
Source§fn clone(&self) -> BybitWsAccountExecution
fn clone(&self) -> BybitWsAccountExecution
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 BybitWsAccountExecution
impl Debug for BybitWsAccountExecution
Source§impl<'de> Deserialize<'de> for BybitWsAccountExecution
impl<'de> Deserialize<'de> for BybitWsAccountExecution
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 BybitWsAccountExecution
impl RefUnwindSafe for BybitWsAccountExecution
impl Send for BybitWsAccountExecution
impl Sync for BybitWsAccountExecution
impl Unpin for BybitWsAccountExecution
impl UnwindSafe for BybitWsAccountExecution
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<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