pub enum U64ColumnRef<'a> {
UInt64(&'a UInt64Array),
Int64(&'a Int64Array),
TimestampNanosecond(&'a TimestampNanosecondArray),
}Expand description
Reference to an unsigned 64-bit value stored as an integer or UTC nanosecond timestamp.
Variants§
Implementations§
Source§impl U64ColumnRef<'_>
impl U64ColumnRef<'_>
Sourcepub fn try_from_array(array: &dyn Array) -> Option<U64ColumnRef<'_>>
pub fn try_from_array(array: &dyn Array) -> Option<U64ColumnRef<'_>>
Returns a compatible unsigned 64-bit view for array.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for U64ColumnRef<'a>
impl<'a> RefUnwindSafe for U64ColumnRef<'a>
impl<'a> Send for U64ColumnRef<'a>
impl<'a> Sync for U64ColumnRef<'a>
impl<'a> Unpin for U64ColumnRef<'a>
impl<'a> UnsafeUnpin for U64ColumnRef<'a>
impl<'a> UnwindSafe for U64ColumnRef<'a>
Blanket Implementations§
impl<T> Allocation for T
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