pub struct Search {Show 19 fields
pub source: Source,
pub show_categories: bool,
pub show_tags: bool,
pub keyword: Option<String>,
pub min_word_count: Option<u32>,
pub max_word_count: Option<u32>,
pub update_days: Option<u8>,
pub is_finished: Option<bool>,
pub is_vip: Option<bool>,
pub category: Option<String>,
pub tags: Vec<String>,
pub excluded_tags: Vec<String>,
pub limit: u8,
pub converts: Vec<Convert>,
pub ignore_keyring: bool,
pub maximum_concurrency: u8,
pub proxy: Option<Url>,
pub no_proxy: bool,
pub cert: Option<PathBuf>,
}Fields§
§source: Source§show_categories: bool§keyword: Option<String>§min_word_count: Option<u32>§max_word_count: Option<u32>§update_days: Option<u8>§is_finished: Option<bool>§is_vip: Option<bool>§category: Option<String>§limit: u8§converts: Vec<Convert>§ignore_keyring: bool§maximum_concurrency: u8§proxy: Option<Url>§no_proxy: bool§cert: Option<PathBuf>Trait Implementations§
source§impl Args for Search
impl Args for Search
source§fn group_id() -> Option<Id>
fn group_id() -> Option<Id>
Report the [
ArgGroup::id][crate::ArgGroup::id] for this set of argumentssource§fn augment_args<'b>(__clap_app: Command) -> Command
fn augment_args<'b>(__clap_app: Command) -> Command
source§fn augment_args_for_update<'b>(__clap_app: Command) -> Command
fn augment_args_for_update<'b>(__clap_app: Command) -> Command
source§impl FromArgMatches for Search
impl FromArgMatches for Search
source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches ) -> Result<Self, Error>
source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches ) -> Result<(), Error>
Assign values from
ArgMatches to self.source§fn update_from_arg_matches_mut(
&mut self,
__clap_arg_matches: &mut ArgMatches
) -> Result<(), Error>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches ) -> Result<(), Error>
Assign values from
ArgMatches to self.Auto Trait Implementations§
impl RefUnwindSafe for Search
impl Send for Search
impl Sync for Search
impl Unpin for Search
impl UnwindSafe for Search
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