pub enum SecurityBoard {
Show 25 variants
Unknown,
USMain,
USPink,
USDJI,
USNSDQ,
USSector,
USOption,
USOptionS,
HKEquity,
HKPreIPO,
HKWarrant,
HKHS,
HKSector,
SHMainConnect,
SHMainNonConnect,
SHSTAR,
CNIX,
CNSector,
SZMainConnect,
SZMainNonConnect,
SZGEMConnect,
SZGEMNonConnect,
SGMain,
STI,
SGSector,
}
Expand description
Security board
Variants§
Unknown
Unknown
USMain
US Main Board
USPink
US Pink Board
USDJI
Dow Jones Industrial Average
USNSDQ
Nasdsaq Index
USSector
US Industry Board
USOption
US Option
USOptionS
US Sepecial Option
HKEquity
Hong Kong Equity Securities
HKPreIPO
HK PreIPO Security
HKWarrant
HK Warrant
HKHS
Hang Seng Index
HKSector
HK Industry Board
SHMainConnect
SH Main Board(Connect)
SHMainNonConnect
SH Main Board(Non Connect)
SHSTAR
SH Science and Technology Innovation Board
CNIX
CN Index
CNSector
CN Industry Board
SZMainConnect
SZ Main Board(Connect)
SZMainNonConnect
SZ Main Board(Non Connect)
SZGEMConnect
SZ Gem Board(Connect)
SZGEMNonConnect
SZ Gem Board(Non Connect)
SGMain
SG Main Board
STI
Singapore Straits Index
SGSector
SG Industry Board
Trait Implementations§
source§impl Clone for SecurityBoard
impl Clone for SecurityBoard
source§fn clone(&self) -> SecurityBoard
fn clone(&self) -> SecurityBoard
Returns a copy 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 SecurityBoard
impl Debug for SecurityBoard
source§impl Default for SecurityBoard
impl Default for SecurityBoard
source§impl<'de> Deserialize<'de> for SecurityBoard
impl<'de> Deserialize<'de> for SecurityBoard
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for SecurityBoard
impl Display for SecurityBoard
source§impl FromStr for SecurityBoard
impl FromStr for SecurityBoard
source§impl Hash for SecurityBoard
impl Hash for SecurityBoard
source§impl PartialEq for SecurityBoard
impl PartialEq for SecurityBoard
source§impl Serialize for SecurityBoard
impl Serialize for SecurityBoard
source§impl TryFrom<&str> for SecurityBoard
impl TryFrom<&str> for SecurityBoard
impl Copy for SecurityBoard
impl Eq for SecurityBoard
impl StructuralPartialEq for SecurityBoard
Auto Trait Implementations§
impl Freeze for SecurityBoard
impl RefUnwindSafe for SecurityBoard
impl Send for SecurityBoard
impl Sync for SecurityBoard
impl Unpin for SecurityBoard
impl UnwindSafe for SecurityBoard
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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