pub enum TupleValue {
String(String),
Int(i64),
Float(f64),
Bool(bool),
}Expand description
A converted tuple value with dynamic types.
Variants§
Implementations§
Source§impl TupleValue
impl TupleValue
Trait Implementations§
Source§impl Clone for TupleValue
impl Clone for TupleValue
Source§fn clone(&self) -> TupleValue
fn clone(&self) -> TupleValue
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 TupleValue
impl Debug for TupleValue
Source§impl PartialEq for TupleValue
impl PartialEq for TupleValue
Source§fn eq(&self, other: &TupleValue) -> bool
fn eq(&self, other: &TupleValue) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TupleValue
Auto Trait Implementations§
impl Freeze for TupleValue
impl RefUnwindSafe for TupleValue
impl Send for TupleValue
impl Sync for TupleValue
impl Unpin for TupleValue
impl UnsafeUnpin for TupleValue
impl UnwindSafe for TupleValue
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