pub struct ParsedSearchResult {
pub result: SearchResult,
pub parsed: StandardEpisode,
pub profile: String,
pub relocate: Option<String>,
pub relocate_season: bool,
}
Fields§
§result: SearchResult
§parsed: StandardEpisode
§profile: String
§relocate: Option<String>
§relocate_season: bool
Implementations§
Trait Implementations§
Source§impl Clone for ParsedSearchResult
impl Clone for ParsedSearchResult
Source§fn clone(&self) -> ParsedSearchResult
fn clone(&self) -> ParsedSearchResult
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 ParsedSearchResult
impl Debug for ParsedSearchResult
Source§impl<'de> Deserialize<'de> for ParsedSearchResult
impl<'de> Deserialize<'de> for ParsedSearchResult
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 ParsedSearchResult
impl RefUnwindSafe for ParsedSearchResult
impl Send for ParsedSearchResult
impl Sync for ParsedSearchResult
impl Unpin for ParsedSearchResult
impl UnwindSafe for ParsedSearchResult
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