pub struct DownloadReport {
pub response: Option<DownloadResponse>,
pub warnings: Vec<BorsaError>,
}Expand description
Summary of historical data download.
Wraps a DownloadResponse payload when present and any warnings
captured during retrieval or normalization.
Fields§
§response: Option<DownloadResponse>Aggregated download payload.
warnings: Vec<BorsaError>Non-fatal issues encountered while building the report.
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
Source§impl<'de> Deserialize<'de> for DownloadReport
impl<'de> Deserialize<'de> for DownloadReport
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DownloadReport
impl PartialEq for DownloadReport
Source§impl Serialize for DownloadReport
impl Serialize for DownloadReport
impl Eq for DownloadReport
impl StructuralPartialEq for DownloadReport
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