Struct datafusion::common::arrow::ipc::BodyCompressionMethod
#[repr(transparent)]pub struct BodyCompressionMethod(pub i8);
Expand description
Provided for forward compatibility in case we need to support different strategies for compressing the IPC message body (like whole-body compression rather than buffer-level) in the future
Tuple Fields§
§0: i8
Implementations§
§impl BodyCompressionMethod
impl BodyCompressionMethod
pub const BUFFER: BodyCompressionMethod = _
pub const BUFFER: BodyCompressionMethod = _
Each constituent buffer is first compressed with the indicated compressor, and then written with the uncompressed length in the first 8 bytes as a 64-bit little-endian signed integer followed by the compressed buffer bytes (and then padding as required by the protocol). The uncompressed length may be set to -1 to indicate that the data that follows is not compressed, which can be useful for cases where compression does not yield appreciable savings.
pub const ENUM_MIN: i8 = 0i8
pub const ENUM_MAX: i8 = 0i8
pub const ENUM_VALUES: &'static [BodyCompressionMethod] = _
pub fn variant_name(self) -> Option<&'static str>
pub fn variant_name(self) -> Option<&'static str>
Returns the variant’s name or “” if unknown.
Trait Implementations§
§impl Clone for BodyCompressionMethod
impl Clone for BodyCompressionMethod
§fn clone(&self) -> BodyCompressionMethod
fn clone(&self) -> BodyCompressionMethod
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 more§impl Debug for BodyCompressionMethod
impl Debug for BodyCompressionMethod
§impl Default for BodyCompressionMethod
impl Default for BodyCompressionMethod
§fn default() -> BodyCompressionMethod
fn default() -> BodyCompressionMethod
Returns the “default value” for a type. Read more
§impl EndianScalar for BodyCompressionMethod
impl EndianScalar for BodyCompressionMethod
type Scalar = i8
fn to_little_endian(self) -> i8
fn from_little_endian(v: i8) -> BodyCompressionMethod
§impl<'a> Follow<'a> for BodyCompressionMethod
impl<'a> Follow<'a> for BodyCompressionMethod
type Inner = BodyCompressionMethod
§impl Hash for BodyCompressionMethod
impl Hash for BodyCompressionMethod
§impl Ord for BodyCompressionMethod
impl Ord for BodyCompressionMethod
§fn cmp(&self, other: &BodyCompressionMethod) -> Ordering
fn cmp(&self, other: &BodyCompressionMethod) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
§impl PartialEq for BodyCompressionMethod
impl PartialEq for BodyCompressionMethod
§fn eq(&self, other: &BodyCompressionMethod) -> bool
fn eq(&self, other: &BodyCompressionMethod) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.§impl PartialOrd for BodyCompressionMethod
impl PartialOrd for BodyCompressionMethod
§fn partial_cmp(&self, other: &BodyCompressionMethod) -> Option<Ordering>
fn partial_cmp(&self, other: &BodyCompressionMethod) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read more§impl Push for BodyCompressionMethod
impl Push for BodyCompressionMethod
§impl<'a> Verifiable for BodyCompressionMethod
impl<'a> Verifiable for BodyCompressionMethod
§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 Copy for BodyCompressionMethod
impl Eq for BodyCompressionMethod
impl SimpleToVerifyInSlice for BodyCompressionMethod
impl StructuralEq for BodyCompressionMethod
impl StructuralPartialEq for BodyCompressionMethod
Auto Trait Implementations§
impl RefUnwindSafe for BodyCompressionMethod
impl Send for BodyCompressionMethod
impl Sync for BodyCompressionMethod
impl Unpin for BodyCompressionMethod
impl UnwindSafe for BodyCompressionMethod
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
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.