pub struct Options {
pub is_finished: Option<bool>,
pub is_vip: Option<bool>,
pub category: Option<Category>,
pub tags: Option<Vec<Tag>>,
pub excluded_tags: Option<Vec<Tag>>,
pub update_days: Option<u8>,
pub word_count: Option<WordCountRange>,
}Expand description
Options used by the search
Fields§
§is_finished: Option<bool>Is it finished
is_vip: Option<bool>Whether this chapter can only be read by VIP users
category: Option<Category>Category
Included tags
Excluded tags
update_days: Option<u8>The number of days since the last update
word_count: Option<WordCountRange>Word count
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Options
impl Send for Options
impl Sync for Options
impl Unpin for Options
impl UnwindSafe for Options
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