pub enum Symbols {
All,
Ids(Vec<u32>),
Symbols(Vec<String>),
}
Expand description
A set of symbols for a particular SType
.
Variants§
All
Sentinel value for all symbols in a dataset.
Ids(Vec<u32>)
A set of symbols identified by their instrument IDs.
Symbols(Vec<String>)
A set of symbols.
Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for Symbols
Available on crate feature historical
only.
impl<'de> Deserialize<'de> for Symbols
Available on crate feature
historical
only.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 PartialEq<Symbols> for Symbols
impl PartialEq<Symbols> for Symbols
impl Eq for Symbols
impl StructuralEq for Symbols
impl StructuralPartialEq for Symbols
Auto Trait Implementations§
impl RefUnwindSafe for Symbols
impl Send for Symbols
impl Sync for Symbols
impl Unpin for Symbols
impl UnwindSafe for Symbols
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<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.