#[non_exhaustive]pub enum FeedSource {
Show 32 variants
FederalReserve,
SecPressReleases,
SecFilings(String),
MarketWatch,
Cnbc,
Bloomberg,
FinancialTimes,
NytBusiness,
GuardianBusiness,
Investing,
Bea,
Ecb,
Cfpb,
WsjMarkets,
Fortune,
BusinessWire,
CoinDesk,
CoinTelegraph,
TechCrunch,
HackerNews,
OilPrice,
CalculatedRisk,
Scmp,
NikkeiAsia,
BankOfEngland,
VentureBeat,
YCombinator,
TheEconomist,
FinancialPost,
FtLex,
RitholtzBigPicture,
Custom(String),
}Expand description
A named or custom RSS/Atom feed source.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
FederalReserve
Federal Reserve press releases and speeches
SecPressReleases
SEC press releases (enforcement actions, rule changes)
SecFilings(String)
SEC EDGAR filing feed — specify form type (e.g., "10-K", "8-K")
MarketWatch
MarketWatch top stories
Cnbc
CNBC Markets
Bloomberg
Bloomberg Markets news
FinancialTimes
Financial Times Markets section
NytBusiness
The New York Times Business section
GuardianBusiness
The Guardian Business section
Investing
Investing.com all news
Bea
U.S. Bureau of Economic Analysis data releases
Ecb
European Central Bank press releases and speeches
Cfpb
Consumer Financial Protection Bureau newsroom
WsjMarkets
Wall Street Journal Markets top stories
Fortune
Fortune — business and finance news
BusinessWire
Business Wire — official corporate press releases (earnings, dividends, M&A)
CoinDesk
CoinDesk — cryptocurrency and blockchain news
CoinTelegraph
CoinTelegraph — cryptocurrency news and analysis
TechCrunch
TechCrunch — startup, VC, and tech industry news
HackerNews
Hacker News — community-curated tech posts with 100+ points
OilPrice
OilPrice.com — crude oil, natural gas, and energy geopolitics
CalculatedRisk
Calculated Risk — housing starts, mortgage rates, and macro data
Scmp
South China Morning Post — China business, regulation, and trade
NikkeiAsia
Nikkei Asia — Japanese and Asian business news
BankOfEngland
Bank of England — UK monetary policy, rate decisions, and regulatory notices
VentureBeat
VentureBeat — AI funding rounds and enterprise technology
YCombinator
Y Combinator Blog — startup ecosystem announcements (low-frequency)
TheEconomist
The Economist — global economics and market analysis
FinancialPost
Financial Post — Canadian market and business news
FtLex
Financial Times Lex — short daily market commentary column
RitholtzBigPicture
The Big Picture (Ritholtz) — macro finance analysis and commentary
Custom(String)
Custom feed URL
Implementations§
Source§impl FeedSource
impl FeedSource
Trait Implementations§
Source§impl Clone for FeedSource
impl Clone for FeedSource
Source§fn clone(&self) -> FeedSource
fn clone(&self) -> FeedSource
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreAuto Trait Implementations§
impl Freeze for FeedSource
impl RefUnwindSafe for FeedSource
impl Send for FeedSource
impl Sync for FeedSource
impl Unpin for FeedSource
impl UnsafeUnpin for FeedSource
impl UnwindSafe for FeedSource
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
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