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
Source§impl From<IndexKey> for IntersticeValue
impl From<IndexKey> for IntersticeValue
Source§impl Ord for IndexKey
impl Ord for IndexKey
Source§impl PartialOrd for IndexKey
impl PartialOrd for IndexKey
Source§impl TryFrom<&IntersticeValue> for IndexKey
impl TryFrom<&IntersticeValue> for IndexKey
Source§impl TryFrom<IntersticeValue> for IndexKey
impl TryFrom<IntersticeValue> for IndexKey
impl Eq for IndexKey
impl StructuralPartialEq 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