pub struct GetExtendedParams {
pub date_from: Option<Date>,
pub date_to: Option<Date>,
pub limit: Option<u8>,
}Expand description
Parameters for the get_extended endpoint.
Fields§
§date_from: Option<Date>Start of the date range to retrieve extended data for.
date_to: Option<Date>End of the date range to retrieve extended data for.
limit: Option<u8>Maximum number of outputs to retrieve. Limited to fifty.
Trait Implementations§
Source§impl Clone for GetExtendedParams
impl Clone for GetExtendedParams
Source§fn clone(&self) -> GetExtendedParams
fn clone(&self) -> GetExtendedParams
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 Debug for GetExtendedParams
impl Debug for GetExtendedParams
Source§impl Default for GetExtendedParams
impl Default for GetExtendedParams
Source§fn default() -> GetExtendedParams
fn default() -> GetExtendedParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetExtendedParams
impl RefUnwindSafe for GetExtendedParams
impl Send for GetExtendedParams
impl Sync for GetExtendedParams
impl Unpin for GetExtendedParams
impl UnwindSafe for GetExtendedParams
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