pub struct StandardEpisode {
pub title: String,
pub season: u32,
pub episode: Episode,
pub checksum: u32,
pub ext: HashMap<String, String>,
}
Fields§
§title: String
§season: u32
§episode: Episode
§checksum: u32
§ext: HashMap<String, String>
Trait Implementations§
Source§impl Clone for StandardEpisode
impl Clone for StandardEpisode
Source§fn clone(&self) -> StandardEpisode
fn clone(&self) -> StandardEpisode
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 StandardEpisode
impl Debug for StandardEpisode
Source§impl Default for StandardEpisode
impl Default for StandardEpisode
Source§fn default() -> StandardEpisode
fn default() -> StandardEpisode
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StandardEpisode
impl<'de> Deserialize<'de> for StandardEpisode
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
Auto Trait Implementations§
impl Freeze for StandardEpisode
impl RefUnwindSafe for StandardEpisode
impl Send for StandardEpisode
impl Sync for StandardEpisode
impl Unpin for StandardEpisode
impl UnwindSafe for StandardEpisode
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