Enum miniz_oxide::inflate::core::State
source · #[non_exhaustive]enum State {
Show 36 variants
Start = 0,
ReadZlibCmf = 1,
ReadZlibFlg = 2,
ReadBlockHeader = 3,
BlockTypeNoCompression = 4,
RawHeader = 5,
RawMemcpy1 = 6,
RawMemcpy2 = 7,
ReadTableSizes = 8,
ReadHufflenTableCodeSize = 9,
ReadLitlenDistTablesCodeSize = 10,
ReadExtraBitsCodeSize = 11,
DecodeLitlen = 12,
WriteSymbol = 13,
ReadExtraBitsLitlen = 14,
DecodeDistance = 15,
ReadExtraBitsDistance = 16,
RawReadFirstByte = 17,
RawStoreFirstByte = 18,
WriteLenBytesToEnd = 19,
BlockDone = 20,
HuffDecodeOuterLoop1 = 21,
HuffDecodeOuterLoop2 = 22,
ReadAdler32 = 23,
DoneForever = 24,
BlockTypeUnexpected = 25,
BadCodeSizeSum = 26,
BadDistOrLiteralTableLength = 27,
BadTotalSymbols = 28,
BadZlibHeader = 29,
DistanceOutOfBounds = 30,
BadRawLength = 31,
BadCodeSizeDistPrevLookup = 32,
InvalidLitlen = 33,
InvalidDist = 34,
InvalidCodeLen = 35,
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Start = 0
ReadZlibCmf = 1
ReadZlibFlg = 2
ReadBlockHeader = 3
BlockTypeNoCompression = 4
RawHeader = 5
RawMemcpy1 = 6
RawMemcpy2 = 7
ReadTableSizes = 8
ReadHufflenTableCodeSize = 9
ReadLitlenDistTablesCodeSize = 10
ReadExtraBitsCodeSize = 11
DecodeLitlen = 12
WriteSymbol = 13
ReadExtraBitsLitlen = 14
DecodeDistance = 15
ReadExtraBitsDistance = 16
RawReadFirstByte = 17
RawStoreFirstByte = 18
WriteLenBytesToEnd = 19
BlockDone = 20
HuffDecodeOuterLoop1 = 21
HuffDecodeOuterLoop2 = 22
ReadAdler32 = 23
DoneForever = 24
BlockTypeUnexpected = 25
BadCodeSizeSum = 26
BadDistOrLiteralTableLength = 27
BadTotalSymbols = 28
BadZlibHeader = 29
DistanceOutOfBounds = 30
BadRawLength = 31
BadCodeSizeDistPrevLookup = 32
InvalidLitlen = 33
InvalidDist = 34
InvalidCodeLen = 35
Implementations§
Trait Implementations§
source§impl PartialEq for State
impl PartialEq for State
impl Copy for State
impl Eq for State
impl StructuralPartialEq for State
Auto Trait Implementations§
impl Freeze for State
impl RefUnwindSafe for State
impl Send for State
impl Sync for State
impl Unpin for State
impl UnwindSafe for State
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