Struct datafusion_python::datafusion_common::arrow::ipc::RunEndEncoded
source · pub struct RunEndEncoded<'a> {
pub _tab: Table<'a>,
}Expand description
Contains two child arrays, run_ends and values. The run_ends child array must be a 16/32/64-bit integer array which encodes the indices at which the run with the value in each corresponding index in the values child array ends. Like list/struct types, the value array can be of any type.
Fields§
§_tab: Table<'a>Implementations§
source§impl<'a> RunEndEncoded<'a>
impl<'a> RunEndEncoded<'a>
pub unsafe fn init_from_table(table: Table<'a>) -> RunEndEncoded<'a>
pub fn create<'bldr, 'args, 'mut_bldr>(
_fbb: &'mut_bldr mut FlatBufferBuilder<'bldr>,
_args: &'args RunEndEncodedArgs,
) -> WIPOffset<RunEndEncoded<'bldr>>where
'bldr: 'args,
'args: 'mut_bldr,
Trait Implementations§
source§impl<'a> Clone for RunEndEncoded<'a>
impl<'a> Clone for RunEndEncoded<'a>
source§fn clone(&self) -> RunEndEncoded<'a>
fn clone(&self) -> RunEndEncoded<'a>
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 moresource§impl Debug for RunEndEncoded<'_>
impl Debug for RunEndEncoded<'_>
source§impl<'a> Follow<'a> for RunEndEncoded<'a>
impl<'a> Follow<'a> for RunEndEncoded<'a>
source§impl<'a> PartialEq for RunEndEncoded<'a>
impl<'a> PartialEq for RunEndEncoded<'a>
source§impl Verifiable for RunEndEncoded<'_>
impl Verifiable for RunEndEncoded<'_>
source§fn run_verifier(
v: &mut Verifier<'_, '_>,
pos: usize,
) -> Result<(), InvalidFlatbuffer>
fn run_verifier( v: &mut Verifier<'_, '_>, pos: usize, ) -> Result<(), InvalidFlatbuffer>
Runs the verifier for this type, assuming its at position
pos in the verifier’s buffer.
Should not need to be called directly.impl<'a> Copy for RunEndEncoded<'a>
impl<'a> StructuralPartialEq for RunEndEncoded<'a>
Auto Trait Implementations§
impl<'a> Freeze for RunEndEncoded<'a>
impl<'a> RefUnwindSafe for RunEndEncoded<'a>
impl<'a> Send for RunEndEncoded<'a>
impl<'a> Sync for RunEndEncoded<'a>
impl<'a> Unpin for RunEndEncoded<'a>
impl<'a> UnwindSafe for RunEndEncoded<'a>
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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