pub struct IntradayBuilder<'a> { /* private fields */ }
Expand description
Builder for Intraday
.
Implementations§
Source§impl<'a> IntradayBuilder<'a>
impl<'a> IntradayBuilder<'a>
Sourcepub fn _symbols(&mut self, value: BTreeSet<Cow<'a, str>>) -> &mut Self
pub fn _symbols(&mut self, value: BTreeSet<Cow<'a, str>>) -> &mut Self
Search for eod for a symbol.
Sourcepub fn exchange<VALUE: Into<Cow<'a, str>>>(&mut self, value: VALUE) -> &mut Self
pub fn exchange<VALUE: Into<Cow<'a, str>>>(&mut self, value: VALUE) -> &mut Self
Exchange to filer symbol by.
Sourcepub fn latest(&mut self, value: bool) -> &mut Self
pub fn latest(&mut self, value: bool) -> &mut Self
Used when desired endpoint is intraday/latest
Source§impl<'a> IntradayBuilder<'a>
impl<'a> IntradayBuilder<'a>
Sourcepub fn symbol(&mut self, symbol: &'a str) -> &mut Self
pub fn symbol(&mut self, symbol: &'a str) -> &mut Self
Search the given symbol.
This provides sane defaults for the user to call symbol() on the builder without needing to wrap his symbol in a BTreeSet beforehand.
Trait Implementations§
Source§impl<'a> Clone for IntradayBuilder<'a>
impl<'a> Clone for IntradayBuilder<'a>
Source§fn clone(&self) -> IntradayBuilder<'a>
fn clone(&self) -> IntradayBuilder<'a>
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 moreAuto Trait Implementations§
impl<'a> Freeze for IntradayBuilder<'a>
impl<'a> RefUnwindSafe for IntradayBuilder<'a>
impl<'a> Send for IntradayBuilder<'a>
impl<'a> Sync for IntradayBuilder<'a>
impl<'a> Unpin for IntradayBuilder<'a>
impl<'a> UnwindSafe for IntradayBuilder<'a>
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