pub struct GrowablePrimitive<'a, T: NativeType> { /* private fields */ }
Expand description
Concrete Growable
for the PrimitiveArray
.
Implementations§
Source§impl<'a, T: NativeType> GrowablePrimitive<'a, T>
impl<'a, T: NativeType> GrowablePrimitive<'a, T>
Sourcepub fn new(
arrays: Vec<&'a PrimitiveArray<T>>,
use_validity: bool,
capacity: usize,
) -> Self
pub fn new( arrays: Vec<&'a PrimitiveArray<T>>, use_validity: bool, capacity: usize, ) -> Self
Creates a new GrowablePrimitive
bound to arrays
with a pre-allocated capacity
.
§Panics
If arrays
is empty.
Trait Implementations§
Source§impl<'a, T: NativeType> From<GrowablePrimitive<'a, T>> for PrimitiveArray<T>
impl<'a, T: NativeType> From<GrowablePrimitive<'a, T>> for PrimitiveArray<T>
Source§fn from(val: GrowablePrimitive<'a, T>) -> Self
fn from(val: GrowablePrimitive<'a, T>) -> Self
Converts to this type from the input type.
Source§impl<'a, T: NativeType> Growable<'a> for GrowablePrimitive<'a, T>
impl<'a, T: NativeType> Growable<'a> for GrowablePrimitive<'a, T>
Source§unsafe fn extend_copies(
&mut self,
index: usize,
start: usize,
len: usize,
copies: usize,
)
unsafe fn extend_copies( &mut self, index: usize, start: usize, len: usize, copies: usize, )
Same as extend, except it repeats the extension
copies
times. Read moreSource§fn extend_validity(&mut self, additional: usize)
fn extend_validity(&mut self, additional: usize)
Auto Trait Implementations§
impl<'a, T> Freeze for GrowablePrimitive<'a, T>
impl<'a, T> RefUnwindSafe for GrowablePrimitive<'a, T>
impl<'a, T> Send for GrowablePrimitive<'a, T>
impl<'a, T> Sync for GrowablePrimitive<'a, T>
impl<'a, T> Unpin for GrowablePrimitive<'a, T>where
T: Unpin,
impl<'a, T> UnwindSafe for GrowablePrimitive<'a, T>where
T: UnwindSafe,
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
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 more