pub struct MutableBinaryValuesArray<O>where
O: Offset,{ /* private fields */ }
Expand description
A MutableArray
that builds a BinaryArray
. It differs
from MutableBinaryArray
in that it builds non-null BinaryArray
.
Implementations§
source§impl<O> MutableBinaryValuesArray<O>where
O: Offset,
impl<O> MutableBinaryValuesArray<O>where
O: Offset,
sourcepub fn new() -> MutableBinaryValuesArray<O>
pub fn new() -> MutableBinaryValuesArray<O>
Returns an empty MutableBinaryValuesArray
.
sourcepub fn try_new(
data_type: DataType,
offsets: Offsets<O>,
values: Vec<u8>
) -> Result<MutableBinaryValuesArray<O>, Error>
pub fn try_new( data_type: DataType, offsets: Offsets<O>, values: Vec<u8> ) -> Result<MutableBinaryValuesArray<O>, Error>
Returns a MutableBinaryValuesArray
created from its internal representation.
§Errors
This function returns an error iff:
- The last offset is not equal to the values’ length.
- The
data_type
’scrate::datatypes::PhysicalType
is not equal to eitherBinary
orLargeBinary
.
§Implementation
This function is O(1)
sourcepub fn default_data_type() -> DataType
pub fn default_data_type() -> DataType
Returns the default DataType
of this container: DataType::Utf8
or DataType::LargeUtf8
depending on the generic Offset
.
sourcepub fn with_capacity(capacity: usize) -> MutableBinaryValuesArray<O>
pub fn with_capacity(capacity: usize) -> MutableBinaryValuesArray<O>
Initializes a new MutableBinaryValuesArray
with a pre-allocated capacity of items.
sourcepub fn with_capacities(
capacity: usize,
values: usize
) -> MutableBinaryValuesArray<O>
pub fn with_capacities( capacity: usize, values: usize ) -> MutableBinaryValuesArray<O>
Initializes a new MutableBinaryValuesArray
with a pre-allocated capacity of items and values.
sourcepub fn reserve(&mut self, additional: usize, additional_values: usize)
pub fn reserve(&mut self, additional: usize, additional_values: usize)
Reserves additional
elements and additional_values
on the values.
sourcepub fn push<T>(&mut self, value: T)
pub fn push<T>(&mut self, value: T)
Pushes a new item to the array.
§Panic
This operation panics iff the length of all values (in bytes) exceeds O
maximum value.
sourcepub fn pop(&mut self) -> Option<Vec<u8>>
pub fn pop(&mut self) -> Option<Vec<u8>>
Pop the last entry from MutableBinaryValuesArray
.
This function returns None
iff this array is empty.
sourcepub unsafe fn value_unchecked(&self, i: usize) -> &[u8] ⓘ
pub unsafe fn value_unchecked(&self, i: usize) -> &[u8] ⓘ
sourcepub fn iter(&self) -> ArrayValuesIter<'_, MutableBinaryValuesArray<O>> ⓘ
pub fn iter(&self) -> ArrayValuesIter<'_, MutableBinaryValuesArray<O>> ⓘ
Returns an iterator of &[u8]
sourcepub fn shrink_to_fit(&mut self)
pub fn shrink_to_fit(&mut self)
Shrinks the capacity of the MutableBinaryValuesArray
to fit its current length.
sourcepub fn into_inner(self) -> (DataType, Offsets<O>, Vec<u8>)
pub fn into_inner(self) -> (DataType, Offsets<O>, Vec<u8>)
Extract the low-end APIs from the MutableBinaryValuesArray
.
source§impl<O> MutableBinaryValuesArray<O>where
O: Offset,
impl<O> MutableBinaryValuesArray<O>where
O: Offset,
sourcepub fn extend_trusted_len<I, P>(&mut self, iterator: I)
pub fn extend_trusted_len<I, P>(&mut self, iterator: I)
Extends the MutableBinaryValuesArray
from a TrustedLen
sourcepub unsafe fn extend_trusted_len_unchecked<I, P>(&mut self, iterator: I)
pub unsafe fn extend_trusted_len_unchecked<I, P>(&mut self, iterator: I)
Extends MutableBinaryValuesArray
from an iterator of trusted len.
§Safety
The iterator must be trusted len.
sourcepub fn from_trusted_len_iter<I, P>(iterator: I) -> MutableBinaryValuesArray<O>
pub fn from_trusted_len_iter<I, P>(iterator: I) -> MutableBinaryValuesArray<O>
Creates a MutableBinaryValuesArray
from a TrustedLen
sourcepub unsafe fn from_trusted_len_iter_unchecked<I, P>(
iterator: I
) -> MutableBinaryValuesArray<O>
pub unsafe fn from_trusted_len_iter_unchecked<I, P>( iterator: I ) -> MutableBinaryValuesArray<O>
Returns a new MutableBinaryValuesArray
from an iterator of trusted length.
§Safety
The iterator must be TrustedLen
.
I.e. that size_hint().1
correctly reports its length.
sourcepub fn try_from_iter<P, I>(
iter: I
) -> Result<MutableBinaryValuesArray<O>, Error>
pub fn try_from_iter<P, I>( iter: I ) -> Result<MutableBinaryValuesArray<O>, Error>
Returns a new MutableBinaryValuesArray
from an iterator.
§Error
This operation errors iff the total length in bytes on the iterator exceeds O
’s maximum value.
(i32::MAX
or i64::MAX
respectively).
sourcepub fn extend_fallible<T, I, E>(&mut self, iter: I) -> Result<(), E>
pub fn extend_fallible<T, I, E>(&mut self, iter: I) -> Result<(), E>
Extend with a fallible iterator
Trait Implementations§
source§impl<O> Clone for MutableBinaryValuesArray<O>
impl<O> Clone for MutableBinaryValuesArray<O>
source§fn clone(&self) -> MutableBinaryValuesArray<O>
fn clone(&self) -> MutableBinaryValuesArray<O>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl<O> Debug for MutableBinaryValuesArray<O>
impl<O> Debug for MutableBinaryValuesArray<O>
source§impl<O> Default for MutableBinaryValuesArray<O>where
O: Offset,
impl<O> Default for MutableBinaryValuesArray<O>where
O: Offset,
source§fn default() -> MutableBinaryValuesArray<O>
fn default() -> MutableBinaryValuesArray<O>
source§impl<O, T> Extend<T> for MutableBinaryValuesArray<O>
impl<O, T> Extend<T> for MutableBinaryValuesArray<O>
source§fn extend<I>(&mut self, iter: I)where
I: IntoIterator<Item = T>,
fn extend<I>(&mut self, iter: I)where
I: IntoIterator<Item = T>,
source§fn extend_one(&mut self, item: A)
fn extend_one(&mut self, item: A)
extend_one
)source§fn extend_reserve(&mut self, additional: usize)
fn extend_reserve(&mut self, additional: usize)
extend_one
)source§impl<O> From<MutableBinaryValuesArray<O>> for BinaryArray<O>where
O: Offset,
impl<O> From<MutableBinaryValuesArray<O>> for BinaryArray<O>where
O: Offset,
source§fn from(other: MutableBinaryValuesArray<O>) -> BinaryArray<O>
fn from(other: MutableBinaryValuesArray<O>) -> BinaryArray<O>
source§impl<O> From<MutableBinaryValuesArray<O>> for MutableBinaryArray<O>where
O: Offset,
impl<O> From<MutableBinaryValuesArray<O>> for MutableBinaryArray<O>where
O: Offset,
source§fn from(other: MutableBinaryValuesArray<O>) -> MutableBinaryArray<O>
fn from(other: MutableBinaryValuesArray<O>) -> MutableBinaryArray<O>
source§impl<O, P> FromIterator<P> for MutableBinaryValuesArray<O>
impl<O, P> FromIterator<P> for MutableBinaryValuesArray<O>
source§fn from_iter<I>(iter: I) -> MutableBinaryValuesArray<O>where
I: IntoIterator<Item = P>,
fn from_iter<I>(iter: I) -> MutableBinaryValuesArray<O>where
I: IntoIterator<Item = P>,
source§impl<'a, O> IntoIterator for &'a MutableBinaryValuesArray<O>where
O: Offset,
impl<'a, O> IntoIterator for &'a MutableBinaryValuesArray<O>where
O: Offset,
§type IntoIter = ArrayValuesIter<'a, MutableBinaryValuesArray<O>>
type IntoIter = ArrayValuesIter<'a, MutableBinaryValuesArray<O>>
source§fn into_iter(
self
) -> <&'a MutableBinaryValuesArray<O> as IntoIterator>::IntoIter
fn into_iter( self ) -> <&'a MutableBinaryValuesArray<O> as IntoIterator>::IntoIter
source§impl<O> MutableArray for MutableBinaryValuesArray<O>where
O: Offset,
impl<O> MutableArray for MutableBinaryValuesArray<O>where
O: Offset,
source§fn validity(&self) -> Option<&MutableBitmap>
fn validity(&self) -> Option<&MutableBitmap>
source§fn as_arc(&mut self) -> Arc<dyn Array>
fn as_arc(&mut self) -> Arc<dyn Array>
Array
.source§fn as_mut_any(&mut self) -> &mut (dyn Any + 'static)
fn as_mut_any(&mut self) -> &mut (dyn Any + 'static)
Any
, to enable dynamic casting.source§fn shrink_to_fit(&mut self)
fn shrink_to_fit(&mut self)
source§impl<O, T> TryExtend<T> for MutableBinaryValuesArray<O>
impl<O, T> TryExtend<T> for MutableBinaryValuesArray<O>
source§fn try_extend<I>(&mut self, iter: I) -> Result<(), Error>where
I: IntoIterator<Item = T>,
fn try_extend<I>(&mut self, iter: I) -> Result<(), Error>where
I: IntoIterator<Item = T>,
Extend::extend
.source§impl<O> TryExtendFromSelf for MutableBinaryValuesArray<O>where
O: Offset,
impl<O> TryExtendFromSelf for MutableBinaryValuesArray<O>where
O: Offset,
source§fn try_extend_from_self(
&mut self,
other: &MutableBinaryValuesArray<O>
) -> Result<(), Error>
fn try_extend_from_self( &mut self, other: &MutableBinaryValuesArray<O> ) -> Result<(), Error>
other
, failing only on overflow.Auto Trait Implementations§
impl<O> Freeze for MutableBinaryValuesArray<O>
impl<O> RefUnwindSafe for MutableBinaryValuesArray<O>
impl<O> Send for MutableBinaryValuesArray<O>
impl<O> Sync for MutableBinaryValuesArray<O>
impl<O> Unpin for MutableBinaryValuesArray<O>where
O: Unpin,
impl<O> UnwindSafe for MutableBinaryValuesArray<O>where
O: 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
source§impl<T> CheckedAs for T
impl<T> CheckedAs for T
source§fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
source§impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
source§fn checked_cast_from(src: Src) -> Option<Dst>
fn checked_cast_from(src: Src) -> Option<Dst>
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> ⓘ
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> ⓘ
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