pub struct DownloadEntry {
pub source: Vec<DownloadSource>,
pub filename: String,
/* private fields */
}
Fields§
§source: Vec<DownloadSource>
§filename: String
Implementations§
Source§impl DownloadEntry
impl DownloadEntry
Sourcepub fn builder() -> DownloadEntryBuilder
pub fn builder() -> DownloadEntryBuilder
Create an instance of DownloadEntry
using the builder syntax
Trait Implementations§
Source§impl Clone for DownloadEntry
impl Clone for DownloadEntry
Source§fn clone(&self) -> DownloadEntry
fn clone(&self) -> DownloadEntry
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 DownloadEntry
impl Debug for DownloadEntry
Source§impl Default for DownloadEntry
impl Default for DownloadEntry
Source§fn default() -> DownloadEntry
fn default() -> DownloadEntry
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for DownloadEntry
impl RefUnwindSafe for DownloadEntry
impl Send for DownloadEntry
impl Sync for DownloadEntry
impl Unpin for DownloadEntry
impl UnwindSafe for DownloadEntry
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