Enum arrow_data::transform::Capacities
source · pub enum Capacities {
Binary(usize, Option<usize>),
List(usize, Option<Box<Capacities>>),
Struct(usize, Option<Vec<Capacities>>),
Dictionary(usize, Option<Box<Capacities>>),
Array(usize),
}
Expand description
Define capacities of child data or data buffers.
Variants§
Binary(usize, Option<usize>)
Binary, Utf8 and LargeUtf8 data types Define
- the capacity of the array offsets
- the capacity of the binary/ str buffer
List(usize, Option<Box<Capacities>>)
List and LargeList data types Define
- the capacity of the array offsets
- the capacity of the child data
Struct(usize, Option<Vec<Capacities>>)
Struct type
- the capacity of the array
- the capacities of the fields
Dictionary(usize, Option<Box<Capacities>>)
Dictionary type
- the capacity of the array/keys
- the capacity of the values
Array(usize)
Don’t preallocate inner buffers and rely on array growth strategy
Trait Implementations§
source§impl Clone for Capacities
impl Clone for Capacities
source§fn clone(&self) -> Capacities
fn clone(&self) -> Capacities
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl RefUnwindSafe for Capacities
impl Send for Capacities
impl Sync for Capacities
impl Unpin for Capacities
impl UnwindSafe for Capacities
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
Mutably borrows from an owned value. Read more