pub enum IndexKey {
U8(u8),
U32(u32),
U64(u64),
I32(i32),
I64(i64),
Bool(bool),
String(String),
Option(Option<Box<IndexKey>>),
Tuple(Vec<IndexKey>),
}Variants§
U8(u8)
U32(u32)
U64(u64)
I32(i32)
I64(i64)
Bool(bool)
String(String)
Option(Option<Box<IndexKey>>)
Tuple(Vec<IndexKey>)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for IndexKey
impl<'de> Deserialize<'de> for IndexKey
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
impl Eq for IndexKey
Source§impl From<IndexKey> for IntersticeValue
impl From<IndexKey> for IntersticeValue
Source§impl Ord for IndexKey
impl Ord for IndexKey
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for IndexKey
impl PartialOrd for IndexKey
impl StructuralPartialEq for IndexKey
Source§impl TryFrom<&IntersticeValue> for IndexKey
impl TryFrom<&IntersticeValue> for IndexKey
Auto Trait Implementations§
impl Freeze for IndexKey
impl RefUnwindSafe for IndexKey
impl Send for IndexKey
impl Sync for IndexKey
impl Unpin for IndexKey
impl UnsafeUnpin for IndexKey
impl UnwindSafe for IndexKey
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