pub struct AlphaVantageConfig {
pub api_key: String,
pub timeout: Duration,
}Expand description
Alpha Vantage configuration
Fields§
§api_key: StringAPI key from alphavantage.co
timeout: DurationRequest timeout
Trait Implementations§
Source§impl Clone for AlphaVantageConfig
impl Clone for AlphaVantageConfig
Source§fn clone(&self) -> AlphaVantageConfig
fn clone(&self) -> AlphaVantageConfig
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 AlphaVantageConfig
impl Debug for AlphaVantageConfig
Auto Trait Implementations§
impl Freeze for AlphaVantageConfig
impl RefUnwindSafe for AlphaVantageConfig
impl Send for AlphaVantageConfig
impl Sync for AlphaVantageConfig
impl Unpin for AlphaVantageConfig
impl UnwindSafe for AlphaVantageConfig
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