Struct ruzstd::fse::FSEDecoder
source · pub struct FSEDecoder<'table> {
pub state: Entry,
/* private fields */
}
Fields§
§state: Entry
Implementations§
source§impl<'t> FSEDecoder<'t>
impl<'t> FSEDecoder<'t>
pub fn new(table: &'t FSETable) -> FSEDecoder<'_>
pub fn decode_symbol(&self) -> u8
pub fn init_state( &mut self, bits: &mut BitReaderReversed<'_> ) -> Result<(), FSEDecoderError>
pub fn update_state( &mut self, bits: &mut BitReaderReversed<'_> ) -> Result<(), FSEDecoderError>
Auto Trait Implementations§
impl<'table> RefUnwindSafe for FSEDecoder<'table>
impl<'table> Send for FSEDecoder<'table>
impl<'table> Sync for FSEDecoder<'table>
impl<'table> Unpin for FSEDecoder<'table>
impl<'table> UnwindSafe for FSEDecoder<'table>
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