pub struct FindQuery {
pub glob: String,
pub max_results: Option<usize>,
}Expand description
Parameters for a find call.
Fields§
§glob: StringGlob to match against corpus-relative paths (e.g. **/*.rs, auth*).
max_results: Option<usize>Override for the maximum number of paths returned.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FindQuery
impl RefUnwindSafe for FindQuery
impl Send for FindQuery
impl Sync for FindQuery
impl Unpin for FindQuery
impl UnsafeUnpin for FindQuery
impl UnwindSafe for FindQuery
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