#[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
sourceimpl From<BrotliResult> for BrotliDecoderResult
impl From<BrotliResult> for BrotliDecoderResult
sourcefn from(r: BrotliResult) -> Self
fn from(r: BrotliResult) -> Self
Performs the conversion.
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more