pub struct QueueSearchArgs {}Expand description
Arguments for ralph queue search.
Search tasks by content (title, evidence, plan, notes, request, tags, scope, custom fields).
Fields§
§query: StringSearch query (substring or regex pattern).
regex: boolInterpret query as a regular expression.
match_case: boolCase-sensitive search (default: case-insensitive).
fuzzy: boolUse fuzzy matching for search (default: substring).
status: Vec<StatusArg>Filter by status (repeatable).
tag: Vec<String>Filter by tag (repeatable, case-insensitive).
scope: Vec<String>Filter by scope token (repeatable, case-insensitive; substring match).
include_done: boolInclude tasks from .ralph/done.jsonc in search.
only_done: boolOnly search tasks in .ralph/done.jsonc (ignores active queue).
format: QueueListFormatOutput format.
limit: u32Maximum results to show (0 = no limit).
all: boolShow all results (ignores –limit).
scheduled: boolFilter to only show scheduled tasks (have scheduled_start set).
Trait Implementations§
Source§impl Args for QueueSearchArgs
impl Args for QueueSearchArgs
Source§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
Append to
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§impl FromArgMatches for QueueSearchArgs
impl FromArgMatches for QueueSearchArgs
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 Freeze for QueueSearchArgs
impl RefUnwindSafe for QueueSearchArgs
impl Send for QueueSearchArgs
impl Sync for QueueSearchArgs
impl Unpin for QueueSearchArgs
impl UnsafeUnpin for QueueSearchArgs
impl UnwindSafe for QueueSearchArgs
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