pub struct ZipDownload {
pub download_url: Option<String>,
pub status_url: Option<String>,
pub expires_at: Option<DateTime<Utc>>,
pub name_conflicts: Option<Vec<Vec<ZipDownloadNameConflicts>>>,
}Fields§
§download_url: Option<String>§status_url: Option<String>§expires_at: Option<DateTime<Utc>>§name_conflicts: Option<Vec<Vec<ZipDownloadNameConflicts>>>Trait Implementations§
Source§impl Clone for ZipDownload
impl Clone for ZipDownload
Source§fn clone(&self) -> ZipDownload
fn clone(&self) -> ZipDownload
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 ZipDownload
impl Debug for ZipDownload
Source§impl Default for ZipDownload
impl Default for ZipDownload
Source§fn default() -> ZipDownload
fn default() -> ZipDownload
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ZipDownload
impl<'de> Deserialize<'de> for ZipDownload
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 ZipDownload
impl PartialEq for ZipDownload
Source§impl Serialize for ZipDownload
impl Serialize for ZipDownload
impl StructuralPartialEq for ZipDownload
Auto Trait Implementations§
impl Freeze for ZipDownload
impl RefUnwindSafe for ZipDownload
impl Send for ZipDownload
impl Sync for ZipDownload
impl Unpin for ZipDownload
impl UnsafeUnpin for ZipDownload
impl UnwindSafe for ZipDownload
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