pub struct TickerTradingDayParams {
pub id: Option<String>,
pub symbol: Option<String>,
pub symbols: Option<Vec<String>>,
pub time_zone: Option<String>,
pub type: Option<TickerTradingDayTypeEnum>,
pub symbol_status: Option<TickerTradingDaySymbolStatusEnum>,
}Expand description
Request parameters for the [ticker_trading_day] operation.
This struct holds all of the inputs you can pass when calling
ticker_trading_day.
Fields§
§id: Option<String>Unique WebSocket request ID.
This field is **optional.
symbol: Option<String>Describe a single symbol
This field is **optional.
symbols: Option<Vec<String>>List of symbols to query
This field is **optional.
time_zone: Option<String>Default: 0 (UTC)
This field is **optional.
type: Option<TickerTradingDayTypeEnum>The r#type parameter.
This field is **optional.
symbol_status: Option<TickerTradingDaySymbolStatusEnum>The symbol_status parameter.
This field is **optional.
Implementations§
Source§impl TickerTradingDayParams
impl TickerTradingDayParams
Sourcepub fn builder() -> TickerTradingDayParamsBuilder
pub fn builder() -> TickerTradingDayParamsBuilder
Create a builder for [ticker_trading_day].
Trait Implementations§
Source§impl Clone for TickerTradingDayParams
impl Clone for TickerTradingDayParams
Source§fn clone(&self) -> TickerTradingDayParams
fn clone(&self) -> TickerTradingDayParams
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 TickerTradingDayParams
impl Debug for TickerTradingDayParams
Source§impl Default for TickerTradingDayParams
impl Default for TickerTradingDayParams
Source§fn default() -> TickerTradingDayParams
fn default() -> TickerTradingDayParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TickerTradingDayParams
impl RefUnwindSafe for TickerTradingDayParams
impl Send for TickerTradingDayParams
impl Sync for TickerTradingDayParams
impl Unpin for TickerTradingDayParams
impl UnsafeUnpin for TickerTradingDayParams
impl UnwindSafe for TickerTradingDayParams
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