pub struct GrowableUtf8<'a, O> where
O: Offset, { /* private fields */ }
Implementations
sourceimpl<'a, O> GrowableUtf8<'a, O> where
O: Offset,
impl<'a, O> GrowableUtf8<'a, O> where
O: Offset,
sourcepub fn new(
arrays: Vec<&'a Utf8Array<O>, Global>,
use_validity: bool,
capacity: usize
) -> GrowableUtf8<'a, O>
pub fn new(
arrays: Vec<&'a Utf8Array<O>, Global>,
use_validity: bool,
capacity: usize
) -> GrowableUtf8<'a, O>
Creates a new GrowableUtf8
bound to arrays
with a pre-allocated capacity
.
Panics
If arrays
is empty.
Trait Implementations
sourceimpl<'a, O> From<GrowableUtf8<'a, O>> for Utf8Array<O> where
O: Offset,
impl<'a, O> From<GrowableUtf8<'a, O>> for Utf8Array<O> where
O: Offset,
sourcefn from(val: GrowableUtf8<'a, O>) -> Utf8Array<O>
fn from(val: GrowableUtf8<'a, O>) -> Utf8Array<O>
Performs the conversion.
sourceimpl<'a, O> Growable<'a> for GrowableUtf8<'a, O> where
O: Offset,
impl<'a, O> Growable<'a> for GrowableUtf8<'a, O> where
O: Offset,
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, O> !RefUnwindSafe for GrowableUtf8<'a, O>
impl<'a, O> !Send for GrowableUtf8<'a, O>
impl<'a, O> !Sync for GrowableUtf8<'a, O>
impl<'a, O> Unpin for GrowableUtf8<'a, O> where
O: Unpin,
impl<'a, O> !UnwindSafe for GrowableUtf8<'a, O>
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