pub struct AdvancedSearchParams {
pub query: String,
pub file_types: Option<Vec<String>>,
pub symbol_types: Option<Vec<String>>,
pub date_range: Option<String>,
pub size_range: Option<String>,
pub complexity_filter: Option<String>,
pub exclude_patterns: Option<Vec<String>>,
pub include_tests: Option<bool>,
pub include_dependencies: Option<bool>,
pub limit: Option<usize>,
}
Fields§
§query: String
§file_types: Option<Vec<String>>
§symbol_types: Option<Vec<String>>
§date_range: Option<String>
§size_range: Option<String>
§complexity_filter: Option<String>
§exclude_patterns: Option<Vec<String>>
§include_tests: Option<bool>
§include_dependencies: Option<bool>
§limit: Option<usize>
Trait Implementations§
Source§impl Debug for AdvancedSearchParams
impl Debug for AdvancedSearchParams
Source§impl<'de> Deserialize<'de> for AdvancedSearchParams
impl<'de> Deserialize<'de> for AdvancedSearchParams
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 AdvancedSearchParams
impl JsonSchema for AdvancedSearchParams
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 moreAuto Trait Implementations§
impl Freeze for AdvancedSearchParams
impl RefUnwindSafe for AdvancedSearchParams
impl Send for AdvancedSearchParams
impl Sync for AdvancedSearchParams
impl Unpin for AdvancedSearchParams
impl UnwindSafe for AdvancedSearchParams
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
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 more