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