pub struct FoundFileDownloads {
pub total_counts: DownloadedFileCounts,
pub files: Vec<FileDownload>,
pub next_offset: String,
}
Expand description
Contains a list of downloaded files, found by a search
Fields§
§total_counts: DownloadedFileCounts
Total number of suitable files, ignoring offset
files: Vec<FileDownload>
The list of files
next_offset: String
The offset for the next request. If empty, there are no more results
Trait Implementations§
Source§impl Clone for FoundFileDownloads
impl Clone for FoundFileDownloads
Source§fn clone(&self) -> FoundFileDownloads
fn clone(&self) -> FoundFileDownloads
Returns a copy 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 FoundFileDownloads
impl Debug for FoundFileDownloads
Source§impl Default for FoundFileDownloads
impl Default for FoundFileDownloads
Source§fn default() -> FoundFileDownloads
fn default() -> FoundFileDownloads
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FoundFileDownloads
impl<'de> Deserialize<'de> for FoundFileDownloads
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 FoundFileDownloads
impl PartialEq for FoundFileDownloads
Source§impl Serialize for FoundFileDownloads
impl Serialize for FoundFileDownloads
impl StructuralPartialEq for FoundFileDownloads
Auto Trait Implementations§
impl Freeze for FoundFileDownloads
impl RefUnwindSafe for FoundFileDownloads
impl Send for FoundFileDownloads
impl Sync for FoundFileDownloads
impl Unpin for FoundFileDownloads
impl UnwindSafe for FoundFileDownloads
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