pub struct NativeAdapter<T>where
T: ArrowPrimitiveType,{
pub native: Option<<T as ArrowPrimitiveType>::Native>,
}
Expand description
An optional primitive value
This struct is used as an adapter when creating PrimitiveArray
from an iterator.
FromIterator
for PrimitiveArray
takes an iterator where the elements can be into
this struct. So once implementing From
or Into
trait for a type, an iterator of
the type can be collected to PrimitiveArray
.
Fields§
§native: Option<<T as ArrowPrimitiveType>::Native>
Corresponding Rust native type if available
Trait Implementations§
Source§impl<T> Debug for NativeAdapter<T>
impl<T> Debug for NativeAdapter<T>
Source§impl<T> From<&Option<<T as ArrowPrimitiveType>::Native>> for NativeAdapter<T>where
T: ArrowPrimitiveType,
impl<T> From<&Option<<T as ArrowPrimitiveType>::Native>> for NativeAdapter<T>where
T: ArrowPrimitiveType,
Source§fn from(value: &Option<<T as ArrowPrimitiveType>::Native>) -> NativeAdapter<T>
fn from(value: &Option<<T as ArrowPrimitiveType>::Native>) -> NativeAdapter<T>
Converts to this type from the input type.
Source§impl<T> From<Option<<T as ArrowPrimitiveType>::Native>> for NativeAdapter<T>where
T: ArrowPrimitiveType,
impl<T> From<Option<<T as ArrowPrimitiveType>::Native>> for NativeAdapter<T>where
T: ArrowPrimitiveType,
Source§fn from(value: Option<<T as ArrowPrimitiveType>::Native>) -> NativeAdapter<T>
fn from(value: Option<<T as ArrowPrimitiveType>::Native>) -> NativeAdapter<T>
Converts to this type from the input type.
Source§impl From<f16> for NativeAdapter<Float16Type>
impl From<f16> for NativeAdapter<Float16Type>
Source§fn from(value: f16) -> NativeAdapter<Float16Type>
fn from(value: f16) -> NativeAdapter<Float16Type>
Converts to this type from the input type.
Source§impl From<f32> for NativeAdapter<Float32Type>
impl From<f32> for NativeAdapter<Float32Type>
Source§fn from(value: f32) -> NativeAdapter<Float32Type>
fn from(value: f32) -> NativeAdapter<Float32Type>
Converts to this type from the input type.
Source§impl From<f64> for NativeAdapter<Float64Type>
impl From<f64> for NativeAdapter<Float64Type>
Source§fn from(value: f64) -> NativeAdapter<Float64Type>
fn from(value: f64) -> NativeAdapter<Float64Type>
Converts to this type from the input type.
Source§impl From<i128> for NativeAdapter<Decimal128Type>
impl From<i128> for NativeAdapter<Decimal128Type>
Source§fn from(value: i128) -> NativeAdapter<Decimal128Type>
fn from(value: i128) -> NativeAdapter<Decimal128Type>
Converts to this type from the input type.
Source§impl From<i256> for NativeAdapter<Decimal256Type>
impl From<i256> for NativeAdapter<Decimal256Type>
Source§fn from(value: i256) -> NativeAdapter<Decimal256Type>
fn from(value: i256) -> NativeAdapter<Decimal256Type>
Converts to this type from the input type.
Source§impl From<u16> for NativeAdapter<UInt16Type>
impl From<u16> for NativeAdapter<UInt16Type>
Source§fn from(value: u16) -> NativeAdapter<UInt16Type>
fn from(value: u16) -> NativeAdapter<UInt16Type>
Converts to this type from the input type.
Source§impl From<u32> for NativeAdapter<UInt32Type>
impl From<u32> for NativeAdapter<UInt32Type>
Source§fn from(value: u32) -> NativeAdapter<UInt32Type>
fn from(value: u32) -> NativeAdapter<UInt32Type>
Converts to this type from the input type.
Source§impl From<u64> for NativeAdapter<UInt64Type>
impl From<u64> for NativeAdapter<UInt64Type>
Source§fn from(value: u64) -> NativeAdapter<UInt64Type>
fn from(value: u64) -> NativeAdapter<UInt64Type>
Converts to this type from the input type.
Auto Trait Implementations§
impl<T> Freeze for NativeAdapter<T>
impl<T> RefUnwindSafe for NativeAdapter<T>
impl<T> Send for NativeAdapter<T>
impl<T> Sync for NativeAdapter<T>
impl<T> Unpin for NativeAdapter<T>
impl<T> UnwindSafe for NativeAdapter<T>
Blanket Implementations§
Source§impl<T> AsAny for T
impl<T> AsAny for T
Source§fn any_ref(&self) -> &(dyn Any + Sync + Send + 'static)
fn any_ref(&self) -> &(dyn Any + Sync + Send + 'static)
Obtains a
dyn Any
reference to the object: Read moreSource§fn as_any(self: Arc<T>) -> Arc<dyn Any + Sync + Send>
fn as_any(self: Arc<T>) -> Arc<dyn Any + Sync + Send>
Obtains an
Arc<dyn Any>
reference to the object: Read moreSource§fn into_any(self: Box<T>) -> Box<dyn Any + Sync + Send>
fn into_any(self: Box<T>) -> Box<dyn Any + Sync + Send>
Converts the object to
Box<dyn Any>
: Read moreSource§fn type_name(&self) -> &'static str
fn type_name(&self) -> &'static str
Convenient wrapper for
std::any::type_name
, since Any
does not provide it and
Any::type_id
is useless as a debugging aid (its Debug
is just a mess of hex digits).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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.