pub struct QueryArgs {
pub attribution: Option<String>,
pub state: Option<String>,
pub context: bool,
pub actor: Option<String>,
pub since: Option<String>,
pub until: Option<String>,
pub signal: Option<String>,
pub symbol: Option<String>,
pub thread: Option<String>,
pub verbs: Vec<String>,
pub limit: u32,
pub include_checkpoints: bool,
}Fields§
§attribution: Option<String>Show line-by-line attribution for a tracked file.
state: Option<String>State to inspect with --attribution. Accepts short or full
state IDs, marker names, HEAD, @, or HEAD~N.
context: boolInclude applicable context annotations with --attribution.
actor: Option<String>Filter by actor email.
since: Option<String>Lower bound. Accepts RFC3339 (2026-05-04T12:00:00Z) or
humantime (1h, 2d, 30m).
until: Option<String>Upper bound, same formats as --since.
signal: Option<String>Filter by signal kind (e.g. novelty, invariant_adjacency).
symbol: Option<String>Filter by symbol (free-form <file>:<symbol> string).
thread: Option<String>Filter by thread name.
verbs: Vec<String>Restrict to specific oplog verbs. Repeat to allow multiple.
limit: u32Maximum hits to return.
include_checkpoints: boolInclude checkpoint entries (excluded by default).
Trait Implementations§
Source§impl Args for QueryArgs
impl Args for QueryArgs
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 QueryArgs
impl FromArgMatches for QueryArgs
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 QueryArgs
impl RefUnwindSafe for QueryArgs
impl Send for QueryArgs
impl Sync for QueryArgs
impl Unpin for QueryArgs
impl UnsafeUnpin for QueryArgs
impl UnwindSafe for QueryArgs
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request