pub struct StocklistQuery<'a> {
pub apply_filters: Option<&'a str>,
pub attribute_groups: Vec<String>,
pub attributes: Vec<String>,
pub free_text_search: Option<&'a str>,
pub limit: Option<i32>,
pub offset: Option<i32>,
pub sort_attribute: Option<&'a str>,
pub sort_order: Option<&'a str>,
}Expand description
Optional query parameters for Client::search_stocklist.
Every field is documented as optional. Defaults match the documented
API defaults (limit=50, offset=0, sort_attribute="name",
sort_order="asc"); pass None to omit a parameter and let the
server apply its default.
Fields§
§apply_filters: Option<&'a str>Defines which filters to apply to the search.
attribute_groups: Vec<String>Returns only attributes for the given attribute groups.
attributes: Vec<String>Returns only the given attributes.
free_text_search: Option<&'a str>Free-text search string (instrument name, symbol, or ISIN).
limit: Option<i32>Limits the search results to limit.
offset: Option<i32>Skips the first offset search results per group.
sort_attribute: Option<&'a str>Defines the attribute to sort by (default name).
sort_order: Option<&'a str>Defines the sort order (asc or desc; default asc).
Trait Implementations§
Source§impl<'a> Clone for StocklistQuery<'a>
impl<'a> Clone for StocklistQuery<'a>
Source§fn clone(&self) -> StocklistQuery<'a>
fn clone(&self) -> StocklistQuery<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for StocklistQuery<'a>
impl<'a> Debug for StocklistQuery<'a>
Source§impl<'a> Default for StocklistQuery<'a>
impl<'a> Default for StocklistQuery<'a>
Source§fn default() -> StocklistQuery<'a>
fn default() -> StocklistQuery<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for StocklistQuery<'a>
impl<'a> RefUnwindSafe for StocklistQuery<'a>
impl<'a> Send for StocklistQuery<'a>
impl<'a> Sync for StocklistQuery<'a>
impl<'a> Unpin for StocklistQuery<'a>
impl<'a> UnsafeUnpin for StocklistQuery<'a>
impl<'a> UnwindSafe for StocklistQuery<'a>
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