pub enum ValveKeyValueType {
String(String),
Object(Vec<ValveKeyValue>),
}Variants§
String(String)
Object(Vec<ValveKeyValue>)
Trait Implementations§
Source§impl Clone for ValveKeyValueType
impl Clone for ValveKeyValueType
Source§fn clone(&self) -> ValveKeyValueType
fn clone(&self) -> ValveKeyValueType
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 ValveKeyValueType
impl Debug for ValveKeyValueType
Source§impl PartialEq for ValveKeyValueType
impl PartialEq for ValveKeyValueType
Source§fn eq(&self, other: &ValveKeyValueType) -> bool
fn eq(&self, other: &ValveKeyValueType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ValveKeyValueType
Auto Trait Implementations§
impl Freeze for ValveKeyValueType
impl RefUnwindSafe for ValveKeyValueType
impl Send for ValveKeyValueType
impl Sync for ValveKeyValueType
impl Unpin for ValveKeyValueType
impl UnsafeUnpin for ValveKeyValueType
impl UnwindSafe for ValveKeyValueType
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