pub struct RsLookupEpisode {
pub serie: String,
pub imdb: Option<String>,
pub slug: Option<String>,
pub tmdb: Option<u64>,
pub trakt: Option<u64>,
pub tvdb: Option<u64>,
pub otherids: Option<String>,
pub season: u32,
pub number: Option<u32>,
}Fields§
§serie: String§imdb: Option<String>§slug: Option<String>§tmdb: Option<u64>§trakt: Option<u64>§tvdb: Option<u64>§otherids: Option<String>§season: u32§number: Option<u32>Trait Implementations§
source§impl Clone for RsLookupEpisode
impl Clone for RsLookupEpisode
source§fn clone(&self) -> RsLookupEpisode
fn clone(&self) -> RsLookupEpisode
Returns a copy 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 RsLookupEpisode
impl Debug for RsLookupEpisode
source§impl Default for RsLookupEpisode
impl Default for RsLookupEpisode
source§fn default() -> RsLookupEpisode
fn default() -> RsLookupEpisode
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for RsLookupEpisode
impl<'de> Deserialize<'de> for RsLookupEpisode
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 PartialEq for RsLookupEpisode
impl PartialEq for RsLookupEpisode
source§fn eq(&self, other: &RsLookupEpisode) -> bool
fn eq(&self, other: &RsLookupEpisode) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for RsLookupEpisode
impl Serialize for RsLookupEpisode
impl StructuralPartialEq for RsLookupEpisode
Auto Trait Implementations§
impl Freeze for RsLookupEpisode
impl RefUnwindSafe for RsLookupEpisode
impl Send for RsLookupEpisode
impl Sync for RsLookupEpisode
impl Unpin for RsLookupEpisode
impl UnwindSafe for RsLookupEpisode
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