pub struct GrepToolInput {
pub pattern: String,
pub path: Option<String>,
pub glob: Option<String>,
pub ignore_case: Option<bool>,
pub literal: Option<bool>,
pub context: Option<f64>,
pub limit: Option<f64>,
}Expand description
TypeBox-compatible grep arguments (fixture grep.json).
Fields§
§pattern: StringSearch pattern (regex or literal string).
path: Option<String>Directory or file to search (default: current directory).
glob: Option<String>Filter files by glob pattern, e.g. *.ts or **/*.spec.ts.
ignore_case: Option<bool>Case-insensitive search (default: false). Omitted and false are
strictly case-sensitive; only true enables case-insensitive search.
literal: Option<bool>Treat pattern as literal string instead of regex (default: false).
context: Option<f64>Number of lines to show before and after each match (default: 0).
limit: Option<f64>Maximum number of matches to return (default: 100).
Trait Implementations§
Source§impl Clone for GrepToolInput
impl Clone for GrepToolInput
Source§fn clone(&self) -> GrepToolInput
fn clone(&self) -> GrepToolInput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GrepToolInput
impl Debug for GrepToolInput
Source§impl<'de> Deserialize<'de> for GrepToolInput
impl<'de> Deserialize<'de> for GrepToolInput
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
Source§impl JsonSchema for GrepToolInput
impl JsonSchema for GrepToolInput
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for GrepToolInput
impl PartialEq for GrepToolInput
Source§impl Serialize for GrepToolInput
impl Serialize for GrepToolInput
impl StructuralPartialEq for GrepToolInput
Auto Trait Implementations§
impl Freeze for GrepToolInput
impl RefUnwindSafe for GrepToolInput
impl Send for GrepToolInput
impl Sync for GrepToolInput
impl Unpin for GrepToolInput
impl UnsafeUnpin for GrepToolInput
impl UnwindSafe for GrepToolInput
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.