pub struct ByteArrayType {}
Expand description
Parquet physical type: ByteArrayType
Trait Implementations§
Source§impl Clone for ByteArrayType
impl Clone for ByteArrayType
Source§fn clone(&self) -> ByteArrayType
fn clone(&self) -> ByteArrayType
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 DataType for ByteArrayType
impl DataType for ByteArrayType
Source§fn get_type_size() -> usize
fn get_type_size() -> usize
Returns size in bytes for Rust representation of the physical type.
Source§fn get_column_reader(
column_reader: ColumnReader,
) -> Option<ColumnReaderImpl<Self>>
fn get_column_reader( column_reader: ColumnReader, ) -> Option<ColumnReaderImpl<Self>>
Returns the underlying
ColumnReaderImpl
for the given ColumnReader
.Source§fn get_column_writer(
column_writer: ColumnWriter<'_>,
) -> Option<ColumnWriterImpl<'_, Self>>
fn get_column_writer( column_writer: ColumnWriter<'_>, ) -> Option<ColumnWriterImpl<'_, Self>>
Returns the underlying
ColumnWriterImpl
for the given ColumnWriter
.Source§fn get_column_writer_ref<'a, 'b: 'a>(
column_writer: &'a ColumnWriter<'b>,
) -> Option<&'a ColumnWriterImpl<'b, Self>>
fn get_column_writer_ref<'a, 'b: 'a>( column_writer: &'a ColumnWriter<'b>, ) -> Option<&'a ColumnWriterImpl<'b, Self>>
Returns a reference to the underlying
ColumnWriterImpl
for the given ColumnWriter
.Source§fn get_column_writer_mut<'a, 'b: 'a>(
column_writer: &'a mut ColumnWriter<'b>,
) -> Option<&'a mut ColumnWriterImpl<'b, Self>>
fn get_column_writer_mut<'a, 'b: 'a>( column_writer: &'a mut ColumnWriter<'b>, ) -> Option<&'a mut ColumnWriterImpl<'b, Self>>
Returns a mutable reference to the underlying
ColumnWriterImpl
for the givenSource§fn get_physical_type() -> Type
fn get_physical_type() -> Type
Returns Parquet physical type.
Auto Trait Implementations§
impl Freeze for ByteArrayType
impl RefUnwindSafe for ByteArrayType
impl Send for ByteArrayType
impl Sync for ByteArrayType
impl Unpin for ByteArrayType
impl UnwindSafe for ByteArrayType
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> 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