pub enum DecoderSpeed {
OneBit = 1,
TwoBits = 2,
ThreeBits = 3,
FourBits = 4,
FiveBits = 5,
}
Expand description
Provides available decoding speed options which represent the number of bits that the decoder can read at a time.
Variants§
Implementations§
Source§impl DecoderSpeed
impl DecoderSpeed
Sourcepub fn known() -> Vec<DecoderSpeed>
pub fn known() -> Vec<DecoderSpeed>
Returns a vector of all available decoding speed options.
Trait Implementations§
Source§impl Clone for DecoderSpeed
impl Clone for DecoderSpeed
Source§fn clone(&self) -> DecoderSpeed
fn clone(&self) -> DecoderSpeed
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 DecoderSpeed
impl Debug for DecoderSpeed
Source§impl PartialEq for DecoderSpeed
impl PartialEq for DecoderSpeed
impl Copy for DecoderSpeed
impl StructuralPartialEq for DecoderSpeed
Auto Trait Implementations§
impl Freeze for DecoderSpeed
impl RefUnwindSafe for DecoderSpeed
impl Send for DecoderSpeed
impl Sync for DecoderSpeed
impl Unpin for DecoderSpeed
impl UnwindSafe for DecoderSpeed
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