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 ==
.impl Copy for BrotliEncoderStreamState
impl Eq for BrotliEncoderStreamState
impl StructuralEq for BrotliEncoderStreamState
impl StructuralPartialEq for BrotliEncoderStreamState
Auto Trait Implementations§
impl RefUnwindSafe for BrotliEncoderStreamState
impl Send for BrotliEncoderStreamState
impl Sync for BrotliEncoderStreamState
impl Unpin for BrotliEncoderStreamState
impl UnwindSafe for BrotliEncoderStreamState
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