pub struct GrowableFixedSizeList<'a> { /* private fields */ }
Expand description
Concrete Growable
for the FixedSizeListArray
.
Implementations
sourceimpl<'a> GrowableFixedSizeList<'a>
impl<'a> GrowableFixedSizeList<'a>
sourcepub fn new(
arrays: Vec<&'a FixedSizeListArray>,
use_validity: bool,
capacity: usize
) -> Self
pub fn new(
arrays: Vec<&'a FixedSizeListArray>,
use_validity: bool,
capacity: usize
) -> Self
Creates a new GrowableFixedSizeList
bound to arrays
with a pre-allocated capacity
.
Panics
If arrays
is empty.
Trait Implementations
sourceimpl<'a> From<GrowableFixedSizeList<'a>> for FixedSizeListArray
impl<'a> From<GrowableFixedSizeList<'a>> for FixedSizeListArray
sourcefn from(val: GrowableFixedSizeList<'a>) -> Self
fn from(val: GrowableFixedSizeList<'a>) -> Self
Performs the conversion.
sourceimpl<'a> Growable<'a> for GrowableFixedSizeList<'a>
impl<'a> Growable<'a> for GrowableFixedSizeList<'a>
sourcefn extend_validity(&mut self, additional: usize)
fn extend_validity(&mut self, additional: usize)
Extends this Growable
with null elements, disregarding the bound arrays
Auto Trait Implementations
impl<'a> !RefUnwindSafe for GrowableFixedSizeList<'a>
impl<'a> !Send for GrowableFixedSizeList<'a>
impl<'a> !Sync for GrowableFixedSizeList<'a>
impl<'a> Unpin for GrowableFixedSizeList<'a>
impl<'a> !UnwindSafe for GrowableFixedSizeList<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more