pub type FundScreenerQuery = ScreenerQuery<FundField>;Expand description
Type alias for mutual fund screener queries.
Use FundField variants to build conditions.
Aliased Type§
pub struct FundScreenerQuery {
pub size: u32,
pub offset: u32,
pub sort_type: SortType,
pub sort_field: FundField,
pub include_fields: Vec<FundField>,
pub top_operator: LogicalOperator,
pub query: QueryGroup<FundField>,
pub quote_type: QuoteType,
}Fields§
§size: u32Number of results to return (default: 25, max: 250).
offset: u32Starting offset for pagination (default: 0).
sort_type: SortTypeSort direction.
sort_field: FundFieldField to sort by.
include_fields: Vec<FundField>Fields to include in the response.
top_operator: LogicalOperatorTop-level logical operator combining all conditions.
query: QueryGroup<FundField>The nested condition tree.
quote_type: QuoteTypeQuote type — determines which Yahoo Finance screener endpoint is used.