pub struct ZipDownloadStatus {
pub total_file_count: Option<i64>,
pub downloaded_file_count: Option<i64>,
pub skipped_file_count: Option<i64>,
pub skipped_folder_count: Option<i64>,
pub state: Option<ZipDownloadStatusState>,
}Fields§
§total_file_count: Option<i64>§downloaded_file_count: Option<i64>§skipped_file_count: Option<i64>§skipped_folder_count: Option<i64>§state: Option<ZipDownloadStatusState>Trait Implementations§
Source§impl Clone for ZipDownloadStatus
impl Clone for ZipDownloadStatus
Source§fn clone(&self) -> ZipDownloadStatus
fn clone(&self) -> ZipDownloadStatus
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 moreSource§impl Debug for ZipDownloadStatus
impl Debug for ZipDownloadStatus
Source§impl Default for ZipDownloadStatus
impl Default for ZipDownloadStatus
Source§fn default() -> ZipDownloadStatus
fn default() -> ZipDownloadStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ZipDownloadStatus
impl<'de> Deserialize<'de> for ZipDownloadStatus
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 ZipDownloadStatus
impl PartialEq for ZipDownloadStatus
Source§impl Serialize for ZipDownloadStatus
impl Serialize for ZipDownloadStatus
impl StructuralPartialEq for ZipDownloadStatus
Auto Trait Implementations§
impl Freeze for ZipDownloadStatus
impl RefUnwindSafe for ZipDownloadStatus
impl Send for ZipDownloadStatus
impl Sync for ZipDownloadStatus
impl Unpin for ZipDownloadStatus
impl UnsafeUnpin for ZipDownloadStatus
impl UnwindSafe for ZipDownloadStatus
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