pub struct BodyCompression<'a> {
pub _tab: Table<'a>,
}
Expand description
Optional compression for the memory buffers constituting IPC message bodies. Intended for use with RecordBatch but could be used for other message types
Fields§
§_tab: Table<'a>
Implementations§
Source§impl<'a> BodyCompression<'a>
impl<'a> BodyCompression<'a>
pub const VT_CODEC: u16 = 4u16
pub const VT_METHOD: u16 = 6u16
pub unsafe fn init_from_table(table: Table<'a>) -> BodyCompression<'a>
pub fn create<'bldr, 'args, 'mut_bldr>(
_fbb: &'mut_bldr mut FlatBufferBuilder<'bldr>,
args: &'args BodyCompressionArgs,
) -> WIPOffset<BodyCompression<'bldr>>where
'bldr: 'args,
'args: 'mut_bldr,
Sourcepub fn codec(&self) -> CompressionType
pub fn codec(&self) -> CompressionType
Compressor library. For LZ4_FRAME, each compressed buffer must consist of a single frame.
Sourcepub fn method(&self) -> BodyCompressionMethod
pub fn method(&self) -> BodyCompressionMethod
Indicates the way the record batch body was compressed
Trait Implementations§
Source§impl<'a> Clone for BodyCompression<'a>
impl<'a> Clone for BodyCompression<'a>
Source§fn clone(&self) -> BodyCompression<'a>
fn clone(&self) -> BodyCompression<'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 BodyCompression<'_>
impl Debug for BodyCompression<'_>
Source§impl<'a> Follow<'a> for BodyCompression<'a>
impl<'a> Follow<'a> for BodyCompression<'a>
Source§impl<'a> PartialEq for BodyCompression<'a>
impl<'a> PartialEq for BodyCompression<'a>
Source§impl Verifiable for BodyCompression<'_>
impl Verifiable for BodyCompression<'_>
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 BodyCompression<'a>
impl<'a> StructuralPartialEq for BodyCompression<'a>
Auto Trait Implementations§
impl<'a> Freeze for BodyCompression<'a>
impl<'a> RefUnwindSafe for BodyCompression<'a>
impl<'a> Send for BodyCompression<'a>
impl<'a> Sync for BodyCompression<'a>
impl<'a> Unpin for BodyCompression<'a>
impl<'a> UnwindSafe for BodyCompression<'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> 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