pub struct DownloadReport {
pub data: BTreeMap<String, Vec<PriceBar>>,
pub errors: BTreeMap<String, String>,
}Fields§
§data: BTreeMap<String, Vec<PriceBar>>§errors: BTreeMap<String, String>Trait Implementations§
Source§impl Clone for DownloadReport
impl Clone for DownloadReport
Source§fn clone(&self) -> DownloadReport
fn clone(&self) -> DownloadReport
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 DownloadReport
impl Debug for DownloadReport
Source§impl Default for DownloadReport
impl Default for DownloadReport
Source§fn default() -> DownloadReport
fn default() -> DownloadReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DownloadReport
impl RefUnwindSafe for DownloadReport
impl Send for DownloadReport
impl Sync for DownloadReport
impl Unpin for DownloadReport
impl UnwindSafe for DownloadReport
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