#[repr(C)]pub enum BrotliDecoderResult {
BROTLI_DECODER_RESULT_ERROR,
BROTLI_DECODER_RESULT_SUCCESS,
BROTLI_DECODER_RESULT_NEEDS_MORE_INPUT,
BROTLI_DECODER_RESULT_NEEDS_MORE_OUTPUT,
}
Variants§
BROTLI_DECODER_RESULT_ERROR
BROTLI_DECODER_RESULT_SUCCESS
BROTLI_DECODER_RESULT_NEEDS_MORE_INPUT
BROTLI_DECODER_RESULT_NEEDS_MORE_OUTPUT
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