#[repr(C)]pub struct aws_huffman_decoder {
pub coder: *mut aws_huffman_symbol_coder,
pub allow_growth: bool,
pub working_bits: u64,
pub num_bits: u8,
}
Expand description
Structure used for persistent decoding. Allows for reading from or writing to incomplete buffers.
Fields
coder: *mut aws_huffman_symbol_coder
allow_growth: bool
working_bits: u64
num_bits: u8
Trait Implementations
sourceimpl Clone for aws_huffman_decoder
impl Clone for aws_huffman_decoder
sourcefn clone(&self) -> aws_huffman_decoder
fn clone(&self) -> aws_huffman_decoder
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for aws_huffman_decoder
impl Debug for aws_huffman_decoder
sourceimpl Default for aws_huffman_decoder
impl Default for aws_huffman_decoder
sourceimpl PartialEq<aws_huffman_decoder> for aws_huffman_decoder
impl PartialEq<aws_huffman_decoder> for aws_huffman_decoder
sourcefn eq(&self, other: &aws_huffman_decoder) -> bool
fn eq(&self, other: &aws_huffman_decoder) -> bool
impl Copy for aws_huffman_decoder
impl Eq for aws_huffman_decoder
impl StructuralEq for aws_huffman_decoder
impl StructuralPartialEq for aws_huffman_decoder
Auto Trait Implementations
impl RefUnwindSafe for aws_huffman_decoder
impl !Send for aws_huffman_decoder
impl !Sync for aws_huffman_decoder
impl Unpin for aws_huffman_decoder
impl UnwindSafe for aws_huffman_decoder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more