pub struct BarsParams {
pub start: Option<DateTime<Utc>>,
pub end: Option<DateTime<Utc>>,
pub timeframe: Option<String>,
pub page_token: Option<String>,
pub limit: Option<u32>,
pub asof: Option<String>,
pub feed: Option<String>,
pub sort: Option<String>,
}Fields§
§start: Option<DateTime<Utc>>§end: Option<DateTime<Utc>>§timeframe: Option<String>§page_token: Option<String>§limit: Option<u32>§asof: Option<String>§feed: Option<String>§sort: Option<String>Trait Implementations§
Source§impl Debug for BarsParams
impl Debug for BarsParams
Source§impl Default for BarsParams
impl Default for BarsParams
Source§fn default() -> BarsParams
fn default() -> BarsParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BarsParams
impl<'de> Deserialize<'de> for BarsParams
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for BarsParams
impl RefUnwindSafe for BarsParams
impl Send for BarsParams
impl Sync for BarsParams
impl Unpin for BarsParams
impl UnwindSafe for BarsParams
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