#[repr(C)]pub enum BrotliDecoderResult {
BROTLI_DECODER_RESULT_ERROR = 0,
BROTLI_DECODER_RESULT_SUCCESS = 1,
BROTLI_DECODER_RESULT_NEEDS_MORE_INPUT = 2,
BROTLI_DECODER_RESULT_NEEDS_MORE_OUTPUT = 3,
}
Variants§
BROTLI_DECODER_RESULT_ERROR = 0
BROTLI_DECODER_RESULT_SUCCESS = 1
BROTLI_DECODER_RESULT_NEEDS_MORE_INPUT = 2
BROTLI_DECODER_RESULT_NEEDS_MORE_OUTPUT = 3
Trait Implementations§
source§impl From<BrotliResult> for BrotliDecoderResult
impl From<BrotliResult> for BrotliDecoderResult
source§fn from(r: BrotliResult) -> Self
fn from(r: BrotliResult) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for BrotliDecoderResult
impl Send for BrotliDecoderResult
impl Sync for BrotliDecoderResult
impl Unpin for BrotliDecoderResult
impl UnwindSafe for BrotliDecoderResult
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