pub struct MutableBitmap {
    buffer: Vec<u8>,
    length: usize,
}
Expand description

A container of booleans. MutableBitmap is semantically equivalent to Vec<bool>.

The two main differences against Vec<bool> is that each element stored as a single bit, thereby:

  • it uses 8x less memory
  • it cannot be represented as &[bool] (i.e. no pointer arithmetics).

A MutableBitmap can be converted to a Bitmap at O(1).

§Examples

use re_arrow2::bitmap::MutableBitmap;

let bitmap = MutableBitmap::from([true, false, true]);
assert_eq!(bitmap.iter().collect::<Vec<_>>(), vec![true, false, true]);

// creation directly from bytes
let mut bitmap = MutableBitmap::try_new(vec![0b00001101], 5).unwrap();
// note: the first bit is the left-most of the first byte
assert_eq!(bitmap.iter().collect::<Vec<_>>(), vec![true, false, true, true, false]);
// we can also get the slice:
assert_eq!(bitmap.as_slice(), [0b00001101u8].as_ref());
// debug helps :)
assert_eq!(format!("{:?}", bitmap), "[0b___01101]".to_string());

// It supports mutation in place
bitmap.set(0, false);
assert_eq!(format!("{:?}", bitmap), "[0b___01100]".to_string());
// and `O(1)` random access
assert_eq!(bitmap.get(0), false);

§Implementation

This container is internally a Vec<u8>.

Fields§

§buffer: Vec<u8>§length: usize

Implementations§

§

impl MutableBitmap

pub fn new() -> MutableBitmap

Initializes an empty MutableBitmap.

pub fn try_new(bytes: Vec<u8>, length: usize) -> Result<MutableBitmap, Error>

Initializes a new MutableBitmap from a Vec<u8> and a length.

§Errors

This function errors iff length > bytes.len() * 8

pub fn from_vec(buffer: Vec<u8>, length: usize) -> MutableBitmap

Initializes a MutableBitmap from a Vec<u8> and a length. This function is O(1).

§Panic

Panics iff the length is larger than the length of the buffer times 8.

pub fn with_capacity(capacity: usize) -> MutableBitmap

Initializes a pre-allocated MutableBitmap with capacity for capacity bits.

pub fn push(&mut self, value: bool)

Pushes a new bit to the MutableBitmap, re-sizing it if necessary.

pub fn pop(&mut self) -> Option<bool>

Pop the last bit from the MutableBitmap. Note if the MutableBitmap is empty, this method will return None.

pub fn get(&self, index: usize) -> bool

Returns whether the position index is set.

§Panics

Panics iff index >= self.len().

pub fn set(&mut self, index: usize, value: bool)

Sets the position index to value

§Panics

Panics iff index >= self.len().

pub fn iter(&self) -> BitmapIter<'_>

constructs a new iterator over the bits of MutableBitmap.

pub fn clear(&mut self)

Empties the MutableBitmap.

pub fn extend_constant(&mut self, additional: usize, value: bool)

Extends MutableBitmap by additional values of constant value.

§Implementation

This function is an order of magnitude faster than pushing element by element.

pub fn from_len_zeroed(length: usize) -> MutableBitmap

Initializes a zeroed MutableBitmap.

pub fn from_len_set(length: usize) -> MutableBitmap

Initializes a MutableBitmap with all values set to valid/ true.

pub fn reserve(&mut self, additional: usize)

Reserves additional bits in the MutableBitmap, potentially re-allocating its buffer.

pub fn capacity(&self) -> usize

Returns the capacity of MutableBitmap in number of bits.

pub unsafe fn push_unchecked(&mut self, value: bool)

Pushes a new bit to the MutableBitmap

§Safety

The caller must ensure that the MutableBitmap has sufficient capacity.

pub fn unset_bits(&self) -> usize

Returns the number of unset bits on this MutableBitmap.

Guaranted to be <= self.len().

§Implementation

This function is O(N)

pub fn null_count(&self) -> usize

👎Deprecated since 0.13.0: use unset_bits instead

Returns the number of unset bits on this MutableBitmap.

pub fn len(&self) -> usize

Returns the length of the MutableBitmap.

pub fn is_empty(&self) -> bool

Returns whether MutableBitmap is empty.

pub unsafe fn set_unchecked(&mut self, index: usize, value: bool)

Sets the position index to value

§Safety

Caller must ensure that index < self.len()

pub fn shrink_to_fit(&mut self)

Shrinks the capacity of the MutableBitmap to fit its current length.

§

impl MutableBitmap

pub fn extend_from_trusted_len_iter<I>(&mut self, iterator: I)
where I: TrustedLen<Item = bool>,

Extends self from a TrustedLen iterator.

pub unsafe fn extend_from_trusted_len_iter_unchecked<I>(&mut self, iterator: I)
where I: Iterator<Item = bool>,

Extends self from an iterator of trusted len.

§Safety

The caller must guarantee that the iterator has a trusted len.

pub unsafe fn from_trusted_len_iter_unchecked<I>(iterator: I) -> MutableBitmap
where I: Iterator<Item = bool>,

Creates a new MutableBitmap from an iterator of booleans.

§Safety

The iterator must report an accurate length.

pub fn from_trusted_len_iter<I>(iterator: I) -> MutableBitmap
where I: TrustedLen<Item = bool>,

Creates a new MutableBitmap from an iterator of booleans.

pub fn try_from_trusted_len_iter<E, I>(iterator: I) -> Result<MutableBitmap, E>
where I: TrustedLen<Item = Result<bool, E>>,

Creates a new MutableBitmap from an iterator of booleans.

pub unsafe fn try_from_trusted_len_iter_unchecked<E, I>( iterator: I ) -> Result<MutableBitmap, E>
where I: Iterator<Item = Result<bool, E>>,

Creates a new MutableBitmap from an falible iterator of booleans.

§Safety

The caller must guarantee that the iterator is TrustedLen.

pub unsafe fn extend_from_slice_unchecked( &mut self, slice: &[u8], offset: usize, length: usize )

Extends the MutableBitmap from a slice of bytes with optional offset. This is the fastest way to extend a MutableBitmap.

§Implementation

When both MutableBitmap’s length and offset are both multiples of 8, this function performs a memcopy. Else, it first aligns bit by bit and then performs a memcopy.

§Safety

Caller must ensure offset + length <= slice.len() * 8

pub fn extend_from_slice(&mut self, slice: &[u8], offset: usize, length: usize)

Extends the MutableBitmap from a slice of bytes with optional offset. This is the fastest way to extend a MutableBitmap.

§Implementation

When both MutableBitmap’s length and offset are both multiples of 8, this function performs a memcopy. Else, it first aligns bit by bit and then performs a memcopy.

pub fn extend_from_bitmap(&mut self, bitmap: &Bitmap)

Extends the MutableBitmap from a Bitmap.

pub fn as_slice(&self) -> &[u8]

Returns the slice of bytes of this MutableBitmap. Note that the last byte may not be fully used.

Trait Implementations§

§

impl<'a> BitAnd<&'a Bitmap> for MutableBitmap

§

type Output = MutableBitmap

The resulting type after applying the & operator.
§

fn bitand(self, rhs: &'a Bitmap) -> MutableBitmap

Performs the & operation. Read more
§

impl<'a> BitAndAssign<&'a Bitmap> for &mut MutableBitmap

§

fn bitand_assign(&mut self, rhs: &'a Bitmap)

Performs the &= operation. Read more
§

impl<'a> BitOr<&'a Bitmap> for MutableBitmap

§

type Output = MutableBitmap

The resulting type after applying the | operator.
§

fn bitor(self, rhs: &'a Bitmap) -> MutableBitmap

Performs the | operation. Read more
§

impl<'a> BitOrAssign<&'a Bitmap> for &mut MutableBitmap

§

fn bitor_assign(&mut self, rhs: &'a Bitmap)

Performs the |= operation. Read more
§

impl<'a> BitXor<&'a Bitmap> for MutableBitmap

§

type Output = MutableBitmap

The resulting type after applying the ^ operator.
§

fn bitxor(self, rhs: &'a Bitmap) -> MutableBitmap

Performs the ^ operation. Read more
§

impl<'a> BitXorAssign<&'a Bitmap> for &mut MutableBitmap

§

fn bitxor_assign(&mut self, rhs: &'a Bitmap)

Performs the ^= operation. Read more
§

impl Clone for MutableBitmap

§

fn clone(&self) -> MutableBitmap

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl Debug for MutableBitmap

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl Default for MutableBitmap

§

fn default() -> MutableBitmap

Returns the “default value” for a type. Read more
§

impl From<MutableBitmap> for Bitmap

§

fn from(buffer: MutableBitmap) -> Bitmap

Converts to this type from the input type.
§

impl From<MutableBitmap> for Option<Bitmap>

§

fn from(buffer: MutableBitmap) -> Option<Bitmap>

Converts to this type from the input type.
§

impl<P> From<P> for MutableBitmap
where P: AsRef<[bool]>,

§

fn from(slice: P) -> MutableBitmap

Converts to this type from the input type.
§

impl FromIterator<bool> for MutableBitmap

§

fn from_iter<I>(iter: I) -> MutableBitmap
where I: IntoIterator<Item = bool>,

Creates a value from an iterator. Read more
§

impl<'a> IntoIterator for &'a MutableBitmap

§

type Item = bool

The type of the elements being iterated over.
§

type IntoIter = BitmapIter<'a>

Which kind of iterator are we turning this into?
§

fn into_iter(self) -> <&'a MutableBitmap as IntoIterator>::IntoIter

Creates an iterator from a value. Read more
§

impl Not for MutableBitmap

§

type Output = MutableBitmap

The resulting type after applying the ! operator.
§

fn not(self) -> MutableBitmap

Performs the unary ! operation. Read more
§

impl PartialEq for MutableBitmap

§

fn eq(&self, other: &MutableBitmap) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Az for T

source§

fn az<Dst>(self) -> Dst
where T: Cast<Dst>,

Casts the value.
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Src, Dst> CastFrom<Src> for Dst
where Src: Cast<Dst>,

source§

fn cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T> CheckedAs for T

source§

fn checked_as<Dst>(self) -> Option<Dst>
where T: CheckedCast<Dst>,

Casts the value.
source§

impl<Src, Dst> CheckedCastFrom<Src> for Dst
where Src: CheckedCast<Dst>,

source§

fn checked_cast_from(src: Src) -> Option<Dst>

Casts the value.
§

impl<T> Downcast<T> for T

§

fn downcast(&self) -> &T

§

impl<T> Downcast for T
where T: Any,

§

fn into_any(self: Box<T>) -> Box<dyn Any>

Convert 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>

Convert 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)

Convert &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)

Convert &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
where T: Any + Send + Sync,

§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Sync + Send>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
source§

impl<T> DynClone for T
where T: Clone,

source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> FromRef<T> for T
where T: Clone,

§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
source§

impl<T> IntoRequest<T> for T

source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
source§

impl<Src, Dst> LosslessTryInto<Dst> for Src
where Dst: LosslessTryFrom<Src>,

source§

fn lossless_try_into(self) -> Option<Dst>

Performs the conversion.
source§

impl<Src, Dst> LossyInto<Dst> for Src
where Dst: LossyFrom<Src>,

source§

fn lossy_into(self) -> Dst

Performs the conversion.
§

impl<T> NoneValue for T
where T: Default,

§

type NoneType = T

§

fn null_value() -> T

The none-equivalent value.
source§

impl<T> OverflowingAs for T

source§

fn overflowing_as<Dst>(self) -> (Dst, bool)
where T: OverflowingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> OverflowingCastFrom<Src> for Dst
where Src: OverflowingCast<Dst>,

source§

fn overflowing_cast_from(src: Src) -> (Dst, bool)

Casts the value.
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> SaturatingAs for T

source§

fn saturating_as<Dst>(self) -> Dst
where T: SaturatingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> SaturatingCastFrom<Src> for Dst
where Src: SaturatingCast<Dst>,

source§

fn saturating_cast_from(src: Src) -> Dst

Casts the value.
§

impl<T> To for T
where T: ?Sized,

§

fn to<T>(self) -> T
where Self: Into<T>,

Converts to T by calling Into<T>::into.
§

fn try_to<T>(self) -> Result<T, Self::Error>
where Self: TryInto<T>,

Tries to convert to T by calling TryInto<T>::try_into.
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> UnwrappedAs for T

source§

fn unwrapped_as<Dst>(self) -> Dst
where T: UnwrappedCast<Dst>,

Casts the value.
source§

impl<Src, Dst> UnwrappedCastFrom<Src> for Dst
where Src: UnwrappedCast<Dst>,

source§

fn unwrapped_cast_from(src: Src) -> Dst

Casts the value.
§

impl<T> Upcast<T> for T

§

fn upcast(&self) -> Option<&T>

§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
source§

impl<T> WrappingAs for T

source§

fn wrapping_as<Dst>(self) -> Dst
where T: WrappingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> WrappingCastFrom<Src> for Dst
where Src: WrappingCast<Dst>,

source§

fn wrapping_cast_from(src: Src) -> Dst

Casts the value.
§

impl<T> Allocation for T
where T: RefUnwindSafe + Send + Sync,

§

impl<T> Ungil for T
where T: Send,

§

impl<T> WasmNotSend for T
where T: Send,

§

impl<T> WasmNotSendSync for T

§

impl<T> WasmNotSync for T
where T: Sync,