pub struct Series {
pub name: String,
pub profile: String,
pub max_days_old: Option<u64>,
pub relocate: Option<String>,
pub relocate_season: bool,
}
Fields§
§name: String
§profile: String
profile name to search for this series
max_days_old: Option<u64>
override for SearchConfig::max_days_old
relocate: Option<String>
if set, overrides Profile::relocate
/
relocate_season: bool
if true, Season X
is appended to the relocate path
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Series
impl<'de> Deserialize<'de> for Series
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 Series
impl RefUnwindSafe for Series
impl Send for Series
impl Sync for Series
impl Unpin for Series
impl UnwindSafe for Series
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