pub struct GetQueryParams {
pub dataset: String,
pub symbols: Symbols,
pub schema: Schema,
pub date_time_range: DateTimeRange,
pub stype_in: SType,
pub limit: Option<NonZeroU64>,
}Available on crate feature
historical only.Expand description
The parameters for several metadata requests.
Fields§
§dataset: StringThe dataset code.
symbols: SymbolsThe symbols to filter for.
schema: SchemaThe data record schema.
date_time_range: DateTimeRangeThe request range with an inclusive start and an exclusive end.
stype_in: STypeThe symbology type of the input symbols. Defaults to
RawSymbol.
limit: Option<NonZeroU64>The optional maximum number of records to return. Defaults to no limit.
Implementations§
Source§impl GetQueryParams
impl GetQueryParams
Sourcepub fn builder() -> GetQueryParamsBuilder
pub fn builder() -> GetQueryParamsBuilder
Create an instance of GetQueryParams using the builder syntax
Trait Implementations§
Source§impl Clone for GetQueryParams
impl Clone for GetQueryParams
Source§fn clone(&self) -> GetQueryParams
fn clone(&self) -> GetQueryParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GetQueryParams
impl Debug for GetQueryParams
Source§impl PartialEq for GetQueryParams
impl PartialEq for GetQueryParams
Source§fn eq(&self, other: &GetQueryParams) -> bool
fn eq(&self, other: &GetQueryParams) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for GetQueryParams
impl StructuralPartialEq for GetQueryParams
Auto Trait Implementations§
impl Freeze for GetQueryParams
impl RefUnwindSafe for GetQueryParams
impl Send for GetQueryParams
impl Sync for GetQueryParams
impl Unpin for GetQueryParams
impl UnsafeUnpin for GetQueryParams
impl UnwindSafe for GetQueryParams
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