pub struct ExchangeInfo {Show 16 fields
pub id: &'static str,
pub name: &'static str,
pub has_fetch_markets: bool,
pub has_create_order: bool,
pub has_cancel_order: bool,
pub has_fetch_positions: bool,
pub has_fetch_balance: bool,
pub has_fetch_orderbook: bool,
pub has_fetch_price_history: bool,
pub has_fetch_trades: bool,
pub has_fetch_user_activity: bool,
pub has_fetch_fills: bool,
pub has_approvals: bool,
pub has_refresh_balance: bool,
pub has_websocket: bool,
pub has_fetch_orderbook_history: bool,
}Fields§
§id: &'static str§name: &'static str§has_fetch_markets: bool§has_create_order: bool§has_cancel_order: bool§has_fetch_positions: bool§has_fetch_balance: bool§has_fetch_orderbook: bool§has_fetch_price_history: bool§has_fetch_trades: bool§has_fetch_user_activity: bool§has_fetch_fills: bool§has_approvals: bool§has_refresh_balance: bool§has_websocket: bool§has_fetch_orderbook_history: boolTrait Implementations§
Source§impl Clone for ExchangeInfo
impl Clone for ExchangeInfo
Source§fn clone(&self) -> ExchangeInfo
fn clone(&self) -> ExchangeInfo
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 ExchangeInfo
impl Debug for ExchangeInfo
Auto Trait Implementations§
impl Freeze for ExchangeInfo
impl RefUnwindSafe for ExchangeInfo
impl Send for ExchangeInfo
impl Sync for ExchangeInfo
impl Unpin for ExchangeInfo
impl UnsafeUnpin for ExchangeInfo
impl UnwindSafe for ExchangeInfo
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