pub enum DataSetValue {
}Expand description
A single cell value inside a DataSet row. Only basic scalar types are
valid; a Null cell encodes as an unset value oneof.
Variants§
Int8(i8)
Int16(i16)
Int32(i32)
Int64(i64)
UInt8(u8)
UInt16(u16)
UInt32(u32)
UInt64(u64)
Float(f32)
Double(f64)
Boolean(bool)
String(String)
Text(String)
DateTime(i64)
Null
Implementations§
Trait Implementations§
Source§impl Clone for DataSetValue
impl Clone for DataSetValue
Source§fn clone(&self) -> DataSetValue
fn clone(&self) -> DataSetValue
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 DataSetValue
impl Debug for DataSetValue
Source§impl PartialEq for DataSetValue
impl PartialEq for DataSetValue
Source§fn eq(&self, other: &DataSetValue) -> bool
fn eq(&self, other: &DataSetValue) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DataSetValue
Auto Trait Implementations§
impl Freeze for DataSetValue
impl RefUnwindSafe for DataSetValue
impl Send for DataSetValue
impl Sync for DataSetValue
impl Unpin for DataSetValue
impl UnsafeUnpin for DataSetValue
impl UnwindSafe for DataSetValue
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