pub enum KeyValueView {
Integer(IntegerHandle),
Boolean(BooleanHandle),
Str(StrHandle),
KeyTuple(KeyTupleHandle),
}Variants§
Trait Implementations§
Source§impl Clone for KeyValueView
impl Clone for KeyValueView
Source§fn clone(&self) -> KeyValueView
fn clone(&self) -> KeyValueView
Returns a duplicate 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 KeyValueView
impl Debug for KeyValueView
Source§impl PartialEq for KeyValueView
impl PartialEq for KeyValueView
impl Copy for KeyValueView
impl Eq for KeyValueView
impl StructuralPartialEq for KeyValueView
Auto Trait Implementations§
impl Freeze for KeyValueView
impl RefUnwindSafe for KeyValueView
impl Send for KeyValueView
impl Sync for KeyValueView
impl Unpin for KeyValueView
impl UnwindSafe for KeyValueView
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