pub struct BarsRequest {
pub symbols: Vec<String>,
pub timeframe: TimeFrame,
pub start: Option<String>,
pub end: Option<String>,
pub limit: Option<u32>,
pub sort: Option<Sort>,
pub loc: Option<Loc>,
pub page_token: Option<String>,
}Fields§
§symbols: Vec<String>§timeframe: TimeFrame§start: Option<String>§end: Option<String>§limit: Option<u32>§sort: Option<Sort>§loc: Option<Loc>§page_token: Option<String>Trait Implementations§
Source§impl Clone for BarsRequest
impl Clone for BarsRequest
Source§fn clone(&self) -> BarsRequest
fn clone(&self) -> BarsRequest
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 BarsRequest
impl Debug for BarsRequest
Source§impl Default for BarsRequest
impl Default for BarsRequest
Source§fn default() -> BarsRequest
fn default() -> BarsRequest
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for BarsRequest
impl RefUnwindSafe for BarsRequest
impl Send for BarsRequest
impl Sync for BarsRequest
impl Unpin for BarsRequest
impl UnwindSafe for BarsRequest
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