#[repr(C)]pub struct aws_huffman_symbol_coder {
pub encode: aws_huffman_symbol_encoder_fn,
pub decode: aws_huffman_symbol_decoder_fn,
pub userdata: *mut c_void,
}
Expand description
Structure used to define how symbols are encoded and decoded
Fields
encode: aws_huffman_symbol_encoder_fn
decode: aws_huffman_symbol_decoder_fn
userdata: *mut c_void
Trait Implementations
sourceimpl Clone for aws_huffman_symbol_coder
impl Clone for aws_huffman_symbol_coder
sourcefn clone(&self) -> aws_huffman_symbol_coder
fn clone(&self) -> aws_huffman_symbol_coder
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_symbol_coder
impl Debug for aws_huffman_symbol_coder
sourceimpl Default for aws_huffman_symbol_coder
impl Default for aws_huffman_symbol_coder
sourceimpl PartialEq<aws_huffman_symbol_coder> for aws_huffman_symbol_coder
impl PartialEq<aws_huffman_symbol_coder> for aws_huffman_symbol_coder
sourcefn eq(&self, other: &aws_huffman_symbol_coder) -> bool
fn eq(&self, other: &aws_huffman_symbol_coder) -> bool
impl Copy for aws_huffman_symbol_coder
impl Eq for aws_huffman_symbol_coder
impl StructuralEq for aws_huffman_symbol_coder
impl StructuralPartialEq for aws_huffman_symbol_coder
Auto Trait Implementations
impl RefUnwindSafe for aws_huffman_symbol_coder
impl !Send for aws_huffman_symbol_coder
impl !Sync for aws_huffman_symbol_coder
impl Unpin for aws_huffman_symbol_coder
impl UnwindSafe for aws_huffman_symbol_coder
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