pub struct EntryDownloadReport {
pub index: u32,
pub title: String,
pub directory: PathBuf,
pub files: Vec<DownloadedFile>,
pub mux: Option<MuxReport>,
}Fields§
§index: u32§title: String§directory: PathBuf§files: Vec<DownloadedFile>§mux: Option<MuxReport>Trait Implementations§
Source§impl Clone for EntryDownloadReport
impl Clone for EntryDownloadReport
Source§fn clone(&self) -> EntryDownloadReport
fn clone(&self) -> EntryDownloadReport
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 EntryDownloadReport
impl Debug for EntryDownloadReport
Source§impl<'de> Deserialize<'de> for EntryDownloadReport
impl<'de> Deserialize<'de> for EntryDownloadReport
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
impl Eq for EntryDownloadReport
Source§impl PartialEq for EntryDownloadReport
impl PartialEq for EntryDownloadReport
Source§fn eq(&self, other: &EntryDownloadReport) -> bool
fn eq(&self, other: &EntryDownloadReport) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EntryDownloadReport
impl Serialize for EntryDownloadReport
impl StructuralPartialEq for EntryDownloadReport
Auto Trait Implementations§
impl Freeze for EntryDownloadReport
impl RefUnwindSafe for EntryDownloadReport
impl Send for EntryDownloadReport
impl Sync for EntryDownloadReport
impl Unpin for EntryDownloadReport
impl UnsafeUnpin for EntryDownloadReport
impl UnwindSafe for EntryDownloadReport
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