pub enum PairImpl {
Show 22 variants
Bool(Pair<Bool>),
Char(Pair<Char>),
Short(Pair<Short>),
Int(Pair<Int>),
Long(Pair<Long>),
Date(Pair<Date>),
Month(Pair<Month>),
Time(Pair<Time>),
Minute(Pair<Minute>),
Second(Pair<Second>),
DateTime(Pair<DateTime>),
Timestamp(Pair<Timestamp>),
NanoTime(Pair<NanoTime>),
NanoTimestamp(Pair<NanoTimestamp>),
Float(Pair<Float>),
Double(Pair<Double>),
Symbol(Pair<Symbol>),
String(Pair<DolphinString>),
DateHour(Pair<DateHour>),
Decimal32(Pair<Decimal32>),
Decimal64(Pair<Decimal64>),
Decimal128(Pair<Decimal128>),
}Variants§
Bool(Pair<Bool>)
Char(Pair<Char>)
Short(Pair<Short>)
Int(Pair<Int>)
Long(Pair<Long>)
Date(Pair<Date>)
Month(Pair<Month>)
Time(Pair<Time>)
Minute(Pair<Minute>)
Second(Pair<Second>)
DateTime(Pair<DateTime>)
Timestamp(Pair<Timestamp>)
NanoTime(Pair<NanoTime>)
NanoTimestamp(Pair<NanoTimestamp>)
Float(Pair<Float>)
Double(Pair<Double>)
Symbol(Pair<Symbol>)
String(Pair<DolphinString>)
DateHour(Pair<DateHour>)
Decimal32(Pair<Decimal32>)
Decimal64(Pair<Decimal64>)
Decimal128(Pair<Decimal128>)
Implementations§
Trait Implementations§
Source§impl From<Pair<Decimal128>> for PairImpl
impl From<Pair<Decimal128>> for PairImpl
Source§fn from(value: Pair<Decimal128>) -> Self
fn from(value: Pair<Decimal128>) -> Self
Converts to this type from the input type.
Source§impl From<Pair<DolphinString>> for PairImpl
impl From<Pair<DolphinString>> for PairImpl
Source§fn from(value: Pair<DolphinString>) -> Self
fn from(value: Pair<DolphinString>) -> Self
Converts to this type from the input type.
Source§impl From<Pair<NanoTimestamp>> for PairImpl
impl From<Pair<NanoTimestamp>> for PairImpl
Source§fn from(value: Pair<NanoTimestamp>) -> Self
fn from(value: Pair<NanoTimestamp>) -> Self
Converts to this type from the input type.
Source§impl From<PairImpl> for ConstantImpl
impl From<PairImpl> for ConstantImpl
Source§impl From<PairImpl> for VectorImpl
impl From<PairImpl> for VectorImpl
Source§impl TryFrom<ConstantImpl> for PairImpl
impl TryFrom<ConstantImpl> for PairImpl
Source§impl TryFrom<VectorImpl> for PairImpl
impl TryFrom<VectorImpl> for PairImpl
impl Eq for PairImpl
impl StructuralPartialEq for PairImpl
Auto Trait Implementations§
impl Freeze for PairImpl
impl RefUnwindSafe for PairImpl
impl Send for PairImpl
impl Sync for PairImpl
impl Unpin for PairImpl
impl UnwindSafe for PairImpl
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