pub enum U32ColumnRef<'a> {
UInt32(&'a UInt32Array),
Int32(&'a Int32Array),
Int64(&'a Int64Array),
}Expand description
Reference to an unsigned 32-bit column stored as UInt32, Int32, or Int64.
Variants§
Implementations§
Source§impl U32ColumnRef<'_>
impl U32ColumnRef<'_>
Sourcepub fn try_from_array(array: &dyn Array) -> Option<U32ColumnRef<'_>>
pub fn try_from_array(array: &dyn Array) -> Option<U32ColumnRef<'_>>
Returns a compatible unsigned 32-bit view for array.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for U32ColumnRef<'a>
impl<'a> RefUnwindSafe for U32ColumnRef<'a>
impl<'a> Send for U32ColumnRef<'a>
impl<'a> Sync for U32ColumnRef<'a>
impl<'a> Unpin for U32ColumnRef<'a>
impl<'a> UnsafeUnpin for U32ColumnRef<'a>
impl<'a> UnwindSafe for U32ColumnRef<'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