Skip to main content

Provider

Enum Provider 

Source
#[non_exhaustive]
pub enum Provider {
Show 23 variants Yahoo, Polygon, Fmp, AlphaVantage, CoinGecko, Fred, WorldBank, FiscalData, Bls, Frankfurter, Binance, Kraken, Finra, DefiLlama, Gdelt, Cftc, Nasdaq, Wikipedia, CongressTrades, Edgar, LocalMarketCalendar, LocalExchange, Custom(CustomId),
}
Expand description

Typed identifier for a financial data provider.

Variants are feature-gated: unavailable providers are excluded at compile time.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

Yahoo

Yahoo Finance (always available).

§

Polygon

Polygon.io (requires polygon feature).

§

Fmp

Financial Modeling Prep (requires fmp feature).

§

AlphaVantage

Alpha Vantage (requires alphavantage feature).

§

CoinGecko

CoinGecko cryptocurrency data (requires crypto feature).

§

Fred

FRED economic data (requires fred feature).

§

WorldBank

World Bank Open Data global macro indicators (requires worldbank feature, keyless).

§

FiscalData

US Treasury FiscalData (requires fiscaldata feature, keyless).

§

Bls

US Bureau of Labor Statistics (requires bls feature; keyless v1, keyed v2 when BLS_API_KEY is set).

§

Frankfurter

Frankfurter ECB reference exchange rates (requires frankfurter feature, keyless).

§

Binance

Binance public market data (requires binance feature, keyless).

§

Kraken

Kraken public market data (requires kraken feature, keyless).

§

Finra

FINRA daily short-sale volume (requires finra feature, keyless).

§

DefiLlama

DefiLlama DeFi TVL data (requires defi feature, keyless).

§

Gdelt

GDELT DOC 2.0 global news search (requires gdelt feature, keyless).

§

Cftc

CFTC Commitments of Traders futures positioning (requires cftc feature, keyless).

§

Nasdaq

Nasdaq market-wide earnings/IPO/dividend/split calendars (requires nasdaq feature, keyless).

§

Wikipedia

Wikipedia S&P 500 index-constituent table (requires wikipedia feature, keyless).

§

CongressTrades

Combined House + Senate PTR stock-trade disclosures (requires the housetrades and/or senatetrades feature, keyless).

§

Edgar

SEC EDGAR filings (always available, keyless).

§

LocalMarketCalendar

NYSE/NASDAQ market holidays, computed locally from federal-holiday rules rather than fetched (always available, no network call).

§

LocalExchange

A static table of major global exchanges (always available, no network call).

§

Custom(CustomId)

A provider supplied by a downstream crate and registered with ProvidersBuilder::with_adapter. Build one with Provider::custom, which is the only way to obtain a CustomId.

Interning is per-process, so a custom id deserializes only after something in this process has constructed it.

The id is held as an index rather than a string so that Provider stays small: it is stored in every model’s provider_id, and a fat pointer here grows Candle by 22%.

Implementations§

Source§

impl Provider

Source

pub fn from_id_str(s: &str) -> Option<Self>

Parse a provider id string back to the typed variant. Returns None if the string doesn’t match any known provider. Prefer this over string conversion to avoid panics.

Source

pub fn custom(id: &'static str) -> Self

A provider this crate does not build, identified by id.

Interning is process-wide and append-only, so the same id always maps to the same value and Provider::custom("x") == Provider::custom("x").

Source

pub fn as_str(self) -> &'static str

String identifier matching ProviderCore::id.

Source

pub fn all() -> Vec<Self>

Every built-in provider variant compiled into this build, whether or not it is configured.

Custom providers are absent: they exist only once registered, and this answers from the enum rather than from a live [crate::ProviderSet]. Returns a Vec rather than an iterator because the variants are feature-gated and assembled at runtime.

Source

pub fn capabilities(self) -> Capability

Capability bitflags for this provider variant, derived from each adapter’s as_* accessor overrides — implementing a capability trait and declaring it can no longer drift apart. Yahoo is the one exception: constructing YahooProvider needs a live auth handshake, so its set is a const declared beside its accessor overrides (yahoo::CAPS).

Provider::Custom returns Capability::NONE. An id carries no adapter, so a custom provider’s real set is ProviderAdapter::capabilities on the registered instance.

Trait Implementations§

Source§

impl Clone for Provider

Source§

fn clone(&self) -> Provider

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for Provider

Source§

impl Debug for Provider

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Provider

Source§

fn default() -> Provider

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for Provider

Source§

fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Display for Provider

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Eq for Provider

Source§

impl Hash for Provider

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for Provider

Source§

fn eq(&self, other: &Provider) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl Serialize for Provider

Source§

fn serialize<S: Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error>

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for Provider

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> DynClone for T
where T: Clone,

Source§

fn __clone_box(&self, _: Private) -> *mut ()

Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Key for T
where T: Clone,

Source§

fn align() -> usize

The alignment necessary for the key. Must return a power of two.
Source§

fn size(&self) -> usize

The size of the key in bytes.
Source§

unsafe fn init(&self, ptr: *mut u8)

Initialize the key in the given memory location. Read more
Source§

unsafe fn get<'a>(ptr: *const u8) -> &'a T

Get a reference to the key from the given memory location. Read more
Source§

unsafe fn drop_in_place(ptr: *mut u8)

Drop the key in place. Read more
Source§

impl<T> PlanCallbackArgs for T

Source§

impl<T> PlanCallbackOut for T

Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToCompactString for T
where T: Display,

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more