#[repr(C)]pub struct aws_huffman_encoder {
pub coder: *mut aws_huffman_symbol_coder,
pub eos_padding: u8,
pub overflow_bits: aws_huffman_code,
}
Expand description
Structure used for persistent encoding. Allows for reading from or writing to incomplete buffers.
Fields
coder: *mut aws_huffman_symbol_coder
eos_padding: u8
overflow_bits: aws_huffman_code
Trait Implementations
sourceimpl Clone for aws_huffman_encoder
impl Clone for aws_huffman_encoder
sourcefn clone(&self) -> aws_huffman_encoder
fn clone(&self) -> aws_huffman_encoder
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_encoder
impl Debug for aws_huffman_encoder
sourceimpl Default for aws_huffman_encoder
impl Default for aws_huffman_encoder
sourceimpl PartialEq<aws_huffman_encoder> for aws_huffman_encoder
impl PartialEq<aws_huffman_encoder> for aws_huffman_encoder
sourcefn eq(&self, other: &aws_huffman_encoder) -> bool
fn eq(&self, other: &aws_huffman_encoder) -> bool
impl Copy for aws_huffman_encoder
impl Eq for aws_huffman_encoder
impl StructuralEq for aws_huffman_encoder
impl StructuralPartialEq for aws_huffman_encoder
Auto Trait Implementations
impl RefUnwindSafe for aws_huffman_encoder
impl !Send for aws_huffman_encoder
impl !Sync for aws_huffman_encoder
impl Unpin for aws_huffman_encoder
impl UnwindSafe for aws_huffman_encoder
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