pub struct UnifiedClientConfig {
pub order_protocol: CoinbaseProtocol,
pub enable_websocket: bool,
pub enable_fix: bool,
pub sandbox: bool,
}Expand description
Unified Coinbase client configuration
Fields§
§order_protocol: CoinbaseProtocolWhich protocol to use for order placement
enable_websocket: boolEnable WebSocket for real-time updates
enable_fix: boolEnable FIX protocol (requires institutional access)
sandbox: boolUse sandbox environment
Trait Implementations§
Source§impl Clone for UnifiedClientConfig
impl Clone for UnifiedClientConfig
Source§fn clone(&self) -> UnifiedClientConfig
fn clone(&self) -> UnifiedClientConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for UnifiedClientConfig
impl Debug for UnifiedClientConfig
Auto Trait Implementations§
impl Freeze for UnifiedClientConfig
impl RefUnwindSafe for UnifiedClientConfig
impl Send for UnifiedClientConfig
impl Sync for UnifiedClientConfig
impl Unpin for UnifiedClientConfig
impl UnwindSafe for UnifiedClientConfig
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