pub struct LargeUtf8(/* private fields */);Expand description
Wrapper denoting Arrow LargeUtf8 values. Use when individual strings can be
extremely large or when 64-bit offsets are preferred.
Implementations§
Trait Implementations§
Source§impl ArrowBinding for LargeUtf8
impl ArrowBinding for LargeUtf8
Source§type Builder = GenericByteBuilder<GenericStringType<i64>>
type Builder = GenericByteBuilder<GenericStringType<i64>>
Concrete Arrow builder type used for this Rust type.
Source§type Array = GenericByteArray<GenericStringType<i64>>
type Array = GenericByteArray<GenericStringType<i64>>
Concrete Arrow array type produced by
finish.Source§fn new_builder(capacity: usize) -> Self::Builder
fn new_builder(capacity: usize) -> Self::Builder
Create a new builder with an optional capacity hint.
Source§fn estimated_bytes_per_value() -> usize
fn estimated_bytes_per_value() -> usize
Estimated bytes per value for variable-length types (String, Binary, etc.).
Returns 0 for fixed-size types. Used to pre-allocate buffer space.
Source§fn append_value(b: &mut Self::Builder, v: &Self)
fn append_value(b: &mut Self::Builder, v: &Self)
Append a non-null value to the builder.
Source§fn append_null(b: &mut Self::Builder)
fn append_null(b: &mut Self::Builder)
Append a null to the builder.
Source§impl ArrowBindingView for LargeUtf8
Available on crate feature views only.
impl ArrowBindingView for LargeUtf8
Available on crate feature
views only.Source§type Array = GenericByteArray<GenericStringType<i64>>
type Array = GenericByteArray<GenericStringType<i64>>
The Arrow array type this view reads from.
Auto Trait Implementations§
impl Freeze for LargeUtf8
impl RefUnwindSafe for LargeUtf8
impl Send for LargeUtf8
impl Sync for LargeUtf8
impl Unpin for LargeUtf8
impl UnwindSafe for LargeUtf8
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