pub enum IndexConfigValue {
Number(f64),
Integer(i64),
String(String),
Bool(bool),
List(Vec<IndexConfigValue>),
Map(BTreeMap<String, IndexConfigValue>),
Null,
}Variants§
Number(f64)
Integer(i64)
String(String)
Bool(bool)
List(Vec<IndexConfigValue>)
Map(BTreeMap<String, IndexConfigValue>)
Null
Trait Implementations§
Source§impl Clone for IndexConfigValue
impl Clone for IndexConfigValue
Source§fn clone(&self) -> IndexConfigValue
fn clone(&self) -> IndexConfigValue
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 IndexConfigValue
impl Debug for IndexConfigValue
Source§impl<'de> Deserialize<'de> for IndexConfigValue
impl<'de> Deserialize<'de> for IndexConfigValue
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 for IndexConfigValue
impl PartialEq for IndexConfigValue
Source§fn eq(&self, other: &IndexConfigValue) -> bool
fn eq(&self, other: &IndexConfigValue) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for IndexConfigValue
impl Serialize for IndexConfigValue
impl StructuralPartialEq for IndexConfigValue
Auto Trait Implementations§
impl Freeze for IndexConfigValue
impl RefUnwindSafe for IndexConfigValue
impl Send for IndexConfigValue
impl Sync for IndexConfigValue
impl Unpin for IndexConfigValue
impl UnsafeUnpin for IndexConfigValue
impl UnwindSafe for IndexConfigValue
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