pub struct GrowableStruct<'a> { /* private fields */ }
Expand description
Concrete Growable
for the StructArray
.
Implementations§
Source§impl<'a> GrowableStruct<'a>
impl<'a> GrowableStruct<'a>
Sourcepub fn new(
arrays: Vec<&'a StructArray>,
use_validity: bool,
capacity: usize,
) -> Self
pub fn new( arrays: Vec<&'a StructArray>, use_validity: bool, capacity: usize, ) -> Self
Creates a new GrowableStruct
bound to arrays
with a pre-allocated capacity
.
§Panics
If arrays
is empty.
Trait Implementations§
Source§impl<'a> From<GrowableStruct<'a>> for StructArray
impl<'a> From<GrowableStruct<'a>> for StructArray
Source§fn from(val: GrowableStruct<'a>) -> Self
fn from(val: GrowableStruct<'a>) -> Self
Converts to this type from the input type.
Source§impl<'a> Growable<'a> for GrowableStruct<'a>
impl<'a> Growable<'a> for GrowableStruct<'a>
Source§fn extend_validity(&mut self, additional: usize)
fn extend_validity(&mut self, additional: usize)
Source§fn as_arc(&mut self) -> Arc<dyn Array>
fn as_arc(&mut self) -> Arc<dyn Array>
Converts this
Growable
to an Arc<dyn Array>
, thereby finishing the mutation.
Self will be empty after such operation.Auto Trait Implementations§
impl<'a> Freeze for GrowableStruct<'a>
impl<'a> !RefUnwindSafe for GrowableStruct<'a>
impl<'a> !Send for GrowableStruct<'a>
impl<'a> !Sync for GrowableStruct<'a>
impl<'a> Unpin for GrowableStruct<'a>
impl<'a> !UnwindSafe for GrowableStruct<'a>
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