pub enum TColumnValue {
BoolVal(TBoolValue),
ByteVal(TByteValue),
I16Val(TI16Value),
I32Val(TI32Value),
I64Val(TI64Value),
DoubleVal(TDoubleValue),
StringVal(TStringValue),
}
Variants§
BoolVal(TBoolValue)
ByteVal(TByteValue)
I16Val(TI16Value)
I32Val(TI32Value)
I64Val(TI64Value)
DoubleVal(TDoubleValue)
StringVal(TStringValue)
Trait Implementations§
Source§impl Clone for TColumnValue
impl Clone for TColumnValue
Source§fn clone(&self) -> TColumnValue
fn clone(&self) -> TColumnValue
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 TColumnValue
impl Debug for TColumnValue
Source§impl Hash for TColumnValue
impl Hash for TColumnValue
Source§impl Ord for TColumnValue
impl Ord for TColumnValue
Source§fn cmp(&self, other: &TColumnValue) -> Ordering
fn cmp(&self, other: &TColumnValue) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for TColumnValue
impl PartialEq for TColumnValue
Source§impl PartialOrd for TColumnValue
impl PartialOrd for TColumnValue
Source§impl TSerializable for TColumnValue
impl TSerializable for TColumnValue
fn read_from_in_protocol( i_prot: &mut dyn TInputProtocol, ) -> Result<TColumnValue>
fn write_to_out_protocol(&self, o_prot: &mut dyn TOutputProtocol) -> Result<()>
impl Eq for TColumnValue
impl StructuralPartialEq for TColumnValue
Auto Trait Implementations§
impl Freeze for TColumnValue
impl RefUnwindSafe for TColumnValue
impl Send for TColumnValue
impl Sync for TColumnValue
impl Unpin for TColumnValue
impl UnwindSafe for TColumnValue
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