#[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.