pub struct SeasonCollection {
pub number: u64,
pub title: String,
pub aired: u64,
pub completed: u64,
pub episodes: Vec<EpisodeCollection>,
}Fields§
§number: u64§title: String§aired: u64§completed: u64§episodes: Vec<EpisodeCollection>Trait Implementations§
Source§impl Clone for SeasonCollection
impl Clone for SeasonCollection
Source§fn clone(&self) -> SeasonCollection
fn clone(&self) -> SeasonCollection
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 SeasonCollection
impl Debug for SeasonCollection
Source§impl<'de> Deserialize<'de> for SeasonCollection
impl<'de> Deserialize<'de> for SeasonCollection
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 Hash for SeasonCollection
impl Hash for SeasonCollection
Source§impl PartialEq for SeasonCollection
impl PartialEq for SeasonCollection
impl Eq for SeasonCollection
impl StructuralPartialEq for SeasonCollection
Auto Trait Implementations§
impl Freeze for SeasonCollection
impl RefUnwindSafe for SeasonCollection
impl Send for SeasonCollection
impl Sync for SeasonCollection
impl Unpin for SeasonCollection
impl UnwindSafe for SeasonCollection
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