Struct re_sdk::external::arrow2::array::MutableBinaryValuesArray
pub struct MutableBinaryValuesArray<O>where
O: Offset,{
data_type: DataType,
offsets: Offsets<O>,
values: Vec<u8>,
}
Expand description
A MutableArray
that builds a BinaryArray
. It differs
from MutableBinaryArray
in that it builds non-null BinaryArray
.
Fields§
§data_type: DataType
§offsets: Offsets<O>
§values: Vec<u8>
Implementations§
§impl<O> MutableBinaryValuesArray<O>where
O: Offset,
impl<O> MutableBinaryValuesArray<O>where
O: Offset,
pub fn new() -> MutableBinaryValuesArray<O>
pub fn new() -> MutableBinaryValuesArray<O>
Returns an empty MutableBinaryValuesArray
.
pub 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)
pub 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
.
pub 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.
pub 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.
pub 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.
pub 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.
pub 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.
pub unsafe fn value_unchecked(&self, i: usize) -> &[u8] ⓘ
pub unsafe fn value_unchecked(&self, i: usize) -> &[u8] ⓘ
pub fn iter(&self) -> ArrayValuesIter<'_, MutableBinaryValuesArray<O>> ⓘ
pub fn iter(&self) -> ArrayValuesIter<'_, MutableBinaryValuesArray<O>> ⓘ
Returns an iterator of &[u8]
pub fn shrink_to_fit(&mut self)
pub fn shrink_to_fit(&mut self)
Shrinks the capacity of the MutableBinaryValuesArray
to fit its current length.
pub 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
.
§impl<O> MutableBinaryValuesArray<O>where
O: Offset,
impl<O> MutableBinaryValuesArray<O>where
O: Offset,
pub 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
pub 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.
pub 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
pub 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.
pub 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).
pub 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§
§impl<O> Clone for MutableBinaryValuesArray<O>
impl<O> Clone for MutableBinaryValuesArray<O>
§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 more§impl<O> Debug for MutableBinaryValuesArray<O>
impl<O> Debug for MutableBinaryValuesArray<O>
§impl<O> Default for MutableBinaryValuesArray<O>where
O: Offset,
impl<O> Default for MutableBinaryValuesArray<O>where
O: Offset,
§fn default() -> MutableBinaryValuesArray<O>
fn default() -> MutableBinaryValuesArray<O>
§impl<O, T> Extend<T> for MutableBinaryValuesArray<O>
impl<O, T> Extend<T> for MutableBinaryValuesArray<O>
§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
)§impl<O> From<MutableBinaryValuesArray<O>> for BinaryArray<O>where
O: Offset,
impl<O> From<MutableBinaryValuesArray<O>> for BinaryArray<O>where
O: Offset,
§fn from(other: MutableBinaryValuesArray<O>) -> BinaryArray<O>
fn from(other: MutableBinaryValuesArray<O>) -> BinaryArray<O>
§impl<O> From<MutableBinaryValuesArray<O>> for MutableBinaryArray<O>where
O: Offset,
impl<O> From<MutableBinaryValuesArray<O>> for MutableBinaryArray<O>where
O: Offset,
§fn from(other: MutableBinaryValuesArray<O>) -> MutableBinaryArray<O>
fn from(other: MutableBinaryValuesArray<O>) -> MutableBinaryArray<O>
§impl<O, P> FromIterator<P> for MutableBinaryValuesArray<O>
impl<O, P> FromIterator<P> for MutableBinaryValuesArray<O>
§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>,
§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>>
§fn into_iter(
self
) -> <&'a MutableBinaryValuesArray<O> as IntoIterator>::IntoIter
fn into_iter( self ) -> <&'a MutableBinaryValuesArray<O> as IntoIterator>::IntoIter
§impl<O> MutableArray for MutableBinaryValuesArray<O>where
O: Offset,
impl<O> MutableArray for MutableBinaryValuesArray<O>where
O: Offset,
§fn validity(&self) -> Option<&MutableBitmap>
fn validity(&self) -> Option<&MutableBitmap>
§fn as_arc(&mut self) -> Arc<dyn Array>
fn as_arc(&mut self) -> Arc<dyn Array>
Array
.§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.§fn shrink_to_fit(&mut self)
fn shrink_to_fit(&mut self)
§impl<O, T> TryExtend<T> for MutableBinaryValuesArray<O>
impl<O, T> TryExtend<T> for MutableBinaryValuesArray<O>
§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
.§impl<O> TryExtendFromSelf for MutableBinaryValuesArray<O>where
O: Offset,
impl<O> TryExtendFromSelf for MutableBinaryValuesArray<O>where
O: Offset,
§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>
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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