pub struct WarmupReport {
pub ok: Vec<ExchangeId>,
pub failed: Vec<(ExchangeId, String)>,
}Expand description
Outcome of crate::Station::warmup.
ok holds every exchange that connected and had its exchange-info fetched
successfully. failed holds exchanges that failed at either the connect or
the REST stage.
Fields§
§ok: Vec<ExchangeId>Exchanges that connected (and had get_exchange_info succeed for at
least one AccountType, if the connector supports it).
failed: Vec<(ExchangeId, String)>Exchanges that failed at connect or REST stage.
Trait Implementations§
Source§impl Clone for WarmupReport
impl Clone for WarmupReport
Source§fn clone(&self) -> WarmupReport
fn clone(&self) -> WarmupReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for WarmupReport
impl RefUnwindSafe for WarmupReport
impl Send for WarmupReport
impl Sync for WarmupReport
impl Unpin for WarmupReport
impl UnsafeUnpin for WarmupReport
impl UnwindSafe for WarmupReport
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