pub struct FindArgs {
pub glob: String,
pub max_results: Option<usize>,
}Expand description
Arguments for FindTool.
Fields§
§glob: StringGlob to match against corpus-relative paths (e.g. **/*.rs, auth*).
max_results: Option<usize>Cap on the number of paths returned.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for FindArgs
impl<'de> Deserialize<'de> for FindArgs
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
Auto Trait Implementations§
impl Freeze for FindArgs
impl RefUnwindSafe for FindArgs
impl Send for FindArgs
impl Sync for FindArgs
impl Unpin for FindArgs
impl UnsafeUnpin for FindArgs
impl UnwindSafe for FindArgs
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