pub struct BybitConfig {
pub base_url: String,
pub category: String,
pub recv_window: u64,
pub ws_url: Option<String>,
pub public_quota: Option<Quota>,
pub private_quota: Option<Quota>,
pub settle_coin: Option<String>,
}Expand description
Configuration for the Bybit REST client.
Fields§
§base_url: String§category: String§recv_window: u64§ws_url: Option<String>§public_quota: Option<Quota>§private_quota: Option<Quota>§settle_coin: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for BybitConfig
impl RefUnwindSafe for BybitConfig
impl Send for BybitConfig
impl Sync for BybitConfig
impl Unpin for BybitConfig
impl UnsafeUnpin for BybitConfig
impl UnwindSafe for BybitConfig
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