pub enum ConfigChangePathItem {
String(String),
Number(usize),
}
Variants§
Trait Implementations§
Source§impl Clone for ConfigChangePathItem
impl Clone for ConfigChangePathItem
Source§fn clone(&self) -> ConfigChangePathItem
fn clone(&self) -> ConfigChangePathItem
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 ConfigChangePathItem
impl Debug for ConfigChangePathItem
Source§impl<'de> Deserialize<'de> for ConfigChangePathItem
impl<'de> Deserialize<'de> for ConfigChangePathItem
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<String> for ConfigChangePathItem
impl From<String> for ConfigChangePathItem
Source§impl From<usize> for ConfigChangePathItem
impl From<usize> for ConfigChangePathItem
Source§impl PartialEq for ConfigChangePathItem
impl PartialEq for ConfigChangePathItem
Source§impl Serialize for ConfigChangePathItem
impl Serialize for ConfigChangePathItem
impl Eq for ConfigChangePathItem
impl StructuralPartialEq for ConfigChangePathItem
Auto Trait Implementations§
impl Freeze for ConfigChangePathItem
impl RefUnwindSafe for ConfigChangePathItem
impl Send for ConfigChangePathItem
impl Sync for ConfigChangePathItem
impl Unpin for ConfigChangePathItem
impl UnwindSafe for ConfigChangePathItem
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§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.