Enum miniz_oxide::MZStatus
source · #[repr(i32)]
pub enum MZStatus {
Ok,
StreamEnd,
NeedDict,
}
Expand description
A list of miniz successful status codes.
These are emitted as the Ok
side of a MZResult
in the StreamResult
returned from
deflate::stream::deflate()
or inflate::stream::inflate()
.
Variants§
Ok
Operation succeeded.
Some data was decompressed or compressed; see the byte counters in the StreamResult
for
details.
StreamEnd
Operation succeeded and end of deflate stream was found.
X-ref TINFLStatus::Done
or
TDEFLStatus::Done
for inflate
or deflate
respectively.
NeedDict
Unused