pub struct BybitExecution {Show 28 fields
pub symbol: Ustr,
pub order_id: Ustr,
pub order_link_id: Ustr,
pub side: BybitOrderSide,
pub order_price: String,
pub order_qty: String,
pub leaves_qty: String,
pub create_type: Option<String>,
pub order_type: BybitOrderType,
pub stop_order_type: Option<BybitStopOrderType>,
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 exec_time: String,
pub fee_currency: Ustr,
pub is_maker: bool,
pub fee_rate: String,
pub trade_iv: String,
pub mark_iv: String,
pub mark_price: String,
pub index_price: String,
pub underlying_price: String,
pub block_trade_id: String,
pub closed_size: String,
pub seq: i64,
}Expand description
Execution/Fill payload returned by GET /v5/execution/list.
§References
Fields§
§symbol: Ustr§order_id: Ustr§order_link_id: Ustr§side: BybitOrderSide§order_price: String§order_qty: String§leaves_qty: String§create_type: Option<String>§order_type: BybitOrderType§stop_order_type: Option<BybitStopOrderType>§exec_fee: String§exec_id: String§exec_price: String§exec_qty: String§exec_type: BybitExecType§exec_value: String§exec_time: String§fee_currency: Ustr§is_maker: bool§fee_rate: String§trade_iv: String§mark_iv: String§mark_price: String§index_price: String§underlying_price: String§block_trade_id: String§closed_size: String§seq: i64Trait Implementations§
Source§impl Clone for BybitExecution
impl Clone for BybitExecution
Source§fn clone(&self) -> BybitExecution
fn clone(&self) -> BybitExecution
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 BybitExecution
impl Debug for BybitExecution
Source§impl<'de> Deserialize<'de> for BybitExecution
impl<'de> Deserialize<'de> for BybitExecution
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 BybitExecution
impl RefUnwindSafe for BybitExecution
impl Send for BybitExecution
impl Sync for BybitExecution
impl Unpin for BybitExecution
impl UnwindSafe for BybitExecution
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