pub struct SearchQueryOptions {
    pub allowed_file_types: HashSet<FileType>,
    pub include: Option<SearchQueryCondition>,
    pub exclude: Option<SearchQueryCondition>,
    pub follow_symbolic_links: bool,
    pub limit: Option<u64>,
    pub min_depth: Option<u64>,
    pub max_depth: Option<u64>,
    pub pagination: Option<u64>,
}
Expand description

Options associated with a search query

Fields

allowed_file_types: HashSet<FileType>

Restrict search to only these file types (otherwise all are allowed)

include: Option<SearchQueryCondition>

Regex to use to filter paths being searched to only those that match the include condition

exclude: Option<SearchQueryCondition>

Regex to use to filter paths being searched to only those that do not match the exclude condition

follow_symbolic_links: bool

Search should follow symbolic links

limit: Option<u64>

Maximum results to return before stopping the query

min_depth: Option<u64>

Minimum depth (directories) to search

The smallest depth is 0 and always corresponds to the path given to the new function on this type. Its direct descendents have depth 1, and their descendents have depth 2, and so on.

max_depth: Option<u64>

Maximum depth (directories) to search

The smallest depth is 0 and always corresponds to the path given to the new function on this type. Its direct descendents have depth 1, and their descendents have depth 2, and so on.

Note that this will not simply filter the entries of the iterator, but it will actually avoid descending into directories when the depth is exceeded.

pagination: Option<u64>

Amount of results to batch before sending back excluding final submission that will always include the remaining results even if less than pagination request

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Converts reference to Any

Converts mutable reference to Any

Consumes and produces Box<dyn Any>

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more