Enum adder_codec_core::codec::EncoderType
source · pub enum EncoderType {
Compressed,
Raw,
Empty,
}Expand description
The encoder type, along with any associated options
Variants§
Compressed
Perform (possibly lossy) compression on the ADΔER stream, and arithmetic coding
Raw
Write the ADΔER stream as raw events
Empty
Do not write any data to the output stream
Trait Implementations§
source§impl Clone for EncoderType
impl Clone for EncoderType
source§fn clone(&self) -> EncoderType
fn clone(&self) -> EncoderType
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 EncoderType
impl Debug for EncoderType
source§impl Default for EncoderType
impl Default for EncoderType
source§fn default() -> EncoderType
fn default() -> EncoderType
Returns the “default value” for a type. Read more
source§impl PartialEq for EncoderType
impl PartialEq for EncoderType
source§fn eq(&self, other: &EncoderType) -> bool
fn eq(&self, other: &EncoderType) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for EncoderType
impl StructuralPartialEq for EncoderType
Auto Trait Implementations§
impl Freeze for EncoderType
impl RefUnwindSafe for EncoderType
impl Send for EncoderType
impl Sync for EncoderType
impl Unpin for EncoderType
impl UnwindSafe for EncoderType
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