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