#[non_exhaustive]pub enum ExchangeCode {
Show 20 variants
Ase,
Bts,
Ncm,
Ngm,
Nms,
Nyq,
Pcx,
Pnk,
Nas,
Asx,
Bse,
Hkg,
Krx,
Lse,
Nsi,
Shh,
Shz,
Tyo,
Tor,
Ger,
}Expand description
Typed exchange code for screener queries.
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.
Ase
NYSE American / AMEX (“ASE”)
Bts
OTC Bulletin Board (“BTS”)
Ncm
NASDAQ Capital Market (“NCM”)
Ngm
NASDAQ Global Market (“NGM”)
Nms
NASDAQ Global Select Market (“NMS”) — primary NASDAQ tier
Nyq
New York Stock Exchange (“NYQ”)
Pcx
NYSE Arca (“PCX”)
Pnk
OTC Pink Sheets / OTC Markets (“PNK”)
Nas
NASDAQ — used for US mutual funds (“NAS”)
Asx
Australian Securities Exchange (“ASX”)
Bse
Bombay Stock Exchange (“BSE”)
Hkg
Hong Kong Stock Exchange (“HKG”)
Krx
Korea Exchange (“KRX”)
Lse
London Stock Exchange (“LSE”)
Nsi
National Stock Exchange of India (“NSI”)
Shh
Shanghai Stock Exchange (“SHH”)
Shz
Shenzhen Stock Exchange (“SHZ”)
Tyo
Tokyo Stock Exchange (“TYO”)
Tor
Toronto Stock Exchange (“TOR”)
Ger
XETRA / Deutsche Börse (“GER”)
Implementations§
Trait Implementations§
Source§impl Clone for ExchangeCode
impl Clone for ExchangeCode
Source§fn clone(&self) -> ExchangeCode
fn clone(&self) -> ExchangeCode
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 ExchangeCode
impl Debug for ExchangeCode
Source§impl From<ExchangeCode> for String
impl From<ExchangeCode> for String
Source§fn from(v: ExchangeCode) -> Self
fn from(v: ExchangeCode) -> Self
Converts to this type from the input type.
Source§impl Hash for ExchangeCode
impl Hash for ExchangeCode
Source§impl PartialEq for ExchangeCode
impl PartialEq for ExchangeCode
impl Copy for ExchangeCode
impl Eq for ExchangeCode
impl StructuralPartialEq for ExchangeCode
Auto Trait Implementations§
impl Freeze for ExchangeCode
impl RefUnwindSafe for ExchangeCode
impl Send for ExchangeCode
impl Sync for ExchangeCode
impl Unpin for ExchangeCode
impl UnsafeUnpin for ExchangeCode
impl UnwindSafe for ExchangeCode
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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> ⓘ
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 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> ⓘ
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