pub struct LargeBinary(/* private fields */);Expand description
Wrapper denoting Arrow LargeBinary values. Use when individual binary values
can exceed 2GB or when 64-bit offsets are preferred.
Implementations§
Trait Implementations§
Source§impl ArrowBinding for LargeBinary
impl ArrowBinding for LargeBinary
Source§type Builder = GenericByteBuilder<GenericBinaryType<i64>>
type Builder = GenericByteBuilder<GenericBinaryType<i64>>
Concrete Arrow builder type used for this Rust type.
Source§type Array = GenericByteArray<GenericBinaryType<i64>>
type Array = GenericByteArray<GenericBinaryType<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 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§fn finish(b: Self::Builder) -> Self::Array
fn finish(b: Self::Builder) -> Self::Array
Finish the builder and produce a typed Arrow array.
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§impl ArrowBindingView for LargeBinary
Available on crate feature views only.
impl ArrowBindingView for LargeBinary
Available on crate feature
views only.Source§type Array = GenericByteArray<GenericBinaryType<i64>>
type Array = GenericByteArray<GenericBinaryType<i64>>
The Arrow array type this view reads from.
Auto Trait Implementations§
impl Freeze for LargeBinary
impl RefUnwindSafe for LargeBinary
impl Send for LargeBinary
impl Sync for LargeBinary
impl Unpin for LargeBinary
impl UnwindSafe for LargeBinary
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