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