pub struct Entry {
pub symbol: String,
pub name: String,
pub stock_type: String,
pub region: String,
pub market_open: NaiveTime,
pub market_close: NaiveTime,
pub timezone: FixedOffset,
pub currency: String,
pub match_score: f64,
}Expand description
Represents a set of values for a ticker
Fields§
§symbol: StringSymbol.
name: StringName.
stock_type: StringType.
region: StringRegion.
market_open: NaiveTimeMarket open time.
market_close: NaiveTimeMarket close time.
timezone: FixedOffsetTimezone.
currency: StringCurrency.
match_score: f64Match score.
Trait Implementations§
impl StructuralPartialEq for Entry
Auto Trait Implementations§
impl Freeze for Entry
impl RefUnwindSafe for Entry
impl Send for Entry
impl Sync for Entry
impl Unpin for Entry
impl UnwindSafe for Entry
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