pub struct MovePositionResult {
pub block_trade_id: String,
pub status: String,
pub reject_party: String,
}Expand description
Details the result of a position move between accounts.
Part of the MovePositionResponse, this struct provides the outcome of the position transfer, including identifiers and status. Bots use this to confirm the transfer and track its execution.
Fields§
§block_trade_id: StringThe block trade ID for the position move.
A unique identifier for the transfer, treated as a block trade by Bybit. Bots use this to track the specific transfer event.
status: StringThe status of the position move.
Indicates whether the transfer was successful (e.g., “Filled”) or encountered issues (e.g., “Rejected”). Bots should check this to confirm transfer completion.
reject_party: StringThe party that rejected the move, if applicable.
Identifies the account (source or destination) that caused a rejection, if any. Bots use this for error handling and to diagnose transfer failures.
Trait Implementations§
Source§impl Clone for MovePositionResult
impl Clone for MovePositionResult
Source§fn clone(&self) -> MovePositionResult
fn clone(&self) -> MovePositionResult
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more