pub struct FastExecution {
pub topic: String,
pub creation_time: u64,
pub data: Vec<FastExecData>,
}Expand description
Represents a fast execution event in Bybit’s perpetual futures market.
This struct is a lightweight version of the execution event, providing essential trade details for high-frequency updates.
§Bybit API Reference
Part of the execution WebSocket stream (https://bybit-exchange.github.io/docs/v5/websocket/private/execution).
§Perpetual Futures Context
Fast executions are designed for low-latency trading bots that need minimal data to process trades quickly.
Fields§
§topic: StringThe WebSocket topic (e.g., “execution”).
Identifies the fast execution data stream. Bots use this to filter relevant messages.
creation_time: u64The timestamp when the event was created (in milliseconds).
Indicates when the execution occurred. Bots use this for time-based analysis.
data: Vec<FastExecData>The fast execution data for the event.
Contains essential trade details. Bots process this for rapid trade updates.
Trait Implementations§
Source§impl Clone for FastExecution
impl Clone for FastExecution
Source§fn clone(&self) -> FastExecution
fn clone(&self) -> FastExecution
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more