pub struct DownloadOperationMetrics {
pub target_count: usize,
pub snapshot_create_started: usize,
pub snapshot_create_completed: usize,
pub snapshot_download_started: usize,
pub snapshot_download_completed: usize,
pub checksum_verify_started: usize,
pub checksum_verify_completed: usize,
pub artifact_finalize_started: usize,
pub artifact_finalize_completed: usize,
}Expand description
DownloadOperationMetrics
Fields§
§target_count: usize§snapshot_create_started: usize§snapshot_create_completed: usize§snapshot_download_started: usize§snapshot_download_completed: usize§checksum_verify_started: usize§checksum_verify_completed: usize§artifact_finalize_started: usize§artifact_finalize_completed: usizeTrait Implementations§
Source§impl Clone for DownloadOperationMetrics
impl Clone for DownloadOperationMetrics
Source§fn clone(&self) -> DownloadOperationMetrics
fn clone(&self) -> DownloadOperationMetrics
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 DownloadOperationMetrics
impl Debug for DownloadOperationMetrics
Source§impl Default for DownloadOperationMetrics
impl Default for DownloadOperationMetrics
Source§fn default() -> DownloadOperationMetrics
fn default() -> DownloadOperationMetrics
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DownloadOperationMetrics
impl<'de> Deserialize<'de> for DownloadOperationMetrics
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 DownloadOperationMetrics
impl PartialEq for DownloadOperationMetrics
Source§impl Serialize for DownloadOperationMetrics
impl Serialize for DownloadOperationMetrics
impl Eq for DownloadOperationMetrics
impl StructuralPartialEq for DownloadOperationMetrics
Auto Trait Implementations§
impl Freeze for DownloadOperationMetrics
impl RefUnwindSafe for DownloadOperationMetrics
impl Send for DownloadOperationMetrics
impl Sync for DownloadOperationMetrics
impl Unpin for DownloadOperationMetrics
impl UnsafeUnpin for DownloadOperationMetrics
impl UnwindSafe for DownloadOperationMetrics
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