pub struct BybitOptions {
pub account_type: String,
pub testnet: bool,
pub recv_window: u64,
}Expand description
Bybit-specific options.
Fields§
§account_type: StringAccount type: UNIFIED, CONTRACT, SPOT.
testnet: boolEnables testnet environment.
recv_window: u64Receive window in milliseconds.
Trait Implementations§
Source§impl Clone for BybitOptions
impl Clone for BybitOptions
Source§fn clone(&self) -> BybitOptions
fn clone(&self) -> BybitOptions
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 BybitOptions
impl Debug for BybitOptions
Auto Trait Implementations§
impl Freeze for BybitOptions
impl RefUnwindSafe for BybitOptions
impl Send for BybitOptions
impl Sync for BybitOptions
impl Unpin for BybitOptions
impl UnwindSafe for BybitOptions
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