#[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§
Source§impl BodyCompressionMethod
impl BodyCompressionMethod
Sourcepub const BUFFER: Self = _
pub const BUFFER: Self = _
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 [Self] = _
Sourcepub 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§
Source§impl Clone for BodyCompressionMethod
impl Clone for BodyCompressionMethod
Source§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 moreSource§impl Debug for BodyCompressionMethod
impl Debug for BodyCompressionMethod
Source§impl Default for BodyCompressionMethod
impl Default for BodyCompressionMethod
Source§fn default() -> BodyCompressionMethod
fn default() -> BodyCompressionMethod
Returns the “default value” for a type. Read more
Source§impl EndianScalar for BodyCompressionMethod
impl EndianScalar for BodyCompressionMethod
Source§impl<'a> Follow<'a> for BodyCompressionMethod
impl<'a> Follow<'a> for BodyCompressionMethod
Source§impl Hash for BodyCompressionMethod
impl Hash for BodyCompressionMethod
Source§impl Ord for BodyCompressionMethod
impl Ord for BodyCompressionMethod
Source§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
Source§impl PartialEq for BodyCompressionMethod
impl PartialEq for BodyCompressionMethod
Source§impl PartialOrd for BodyCompressionMethod
impl PartialOrd for BodyCompressionMethod
Source§impl Push for BodyCompressionMethod
impl Push for BodyCompressionMethod
Source§impl<'a> Verifiable for BodyCompressionMethod
impl<'a> Verifiable for BodyCompressionMethod
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 Copy for BodyCompressionMethod
impl Eq for BodyCompressionMethod
impl SimpleToVerifyInSlice for BodyCompressionMethod
impl StructuralPartialEq for BodyCompressionMethod
Auto Trait Implementations§
impl Freeze for BodyCompressionMethod
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