Enum brotli::enc::encode::BrotliEncoderStreamState
source · #[repr(i32)]
pub enum BrotliEncoderStreamState {
BROTLI_STREAM_PROCESSING,
BROTLI_STREAM_FLUSH_REQUESTED,
BROTLI_STREAM_FINISHED,
BROTLI_STREAM_METADATA_HEAD,
BROTLI_STREAM_METADATA_BODY,
}
Variants§
BROTLI_STREAM_PROCESSING
BROTLI_STREAM_FLUSH_REQUESTED
BROTLI_STREAM_FINISHED
BROTLI_STREAM_METADATA_HEAD
BROTLI_STREAM_METADATA_BODY
Trait Implementations§
source§impl Clone for BrotliEncoderStreamState
impl Clone for BrotliEncoderStreamState
source§fn clone(&self) -> BrotliEncoderStreamState
fn clone(&self) -> BrotliEncoderStreamState
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 PartialEq<BrotliEncoderStreamState> for BrotliEncoderStreamState
impl PartialEq<BrotliEncoderStreamState> for BrotliEncoderStreamState
source§fn eq(&self, other: &BrotliEncoderStreamState) -> bool
fn eq(&self, other: &BrotliEncoderStreamState) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.