oven-sh/bun · error · Error

BrotliFailedToCreateInstance

Error message

BrotliFailedToCreateInstance

What it means

Error "BrotliFailedToCreateInstance" thrown in oven-sh/bun.

Source

Thrown at src/brotli/error.rs:5

#[derive(Debug, Clone, Copy, PartialEq, Eq, thiserror::Error)]
pub enum Error {
    #[error("BrotliFailedToLoad")]
    BrotliFailedToLoad,
    #[error("BrotliFailedToCreateInstance")]
    BrotliFailedToCreateInstance,
    #[error("BrotliDecompressionError")]
    BrotliDecompressionError,
    #[error("ShortRead")]
    ShortRead,
}

impl Error {
    #[allow(clippy::trivially_copy_pass_by_ref)]
    pub fn name(&self) -> &'static str {
        match self {
            Self::BrotliFailedToLoad => "BrotliFailedToLoad",
            Self::BrotliFailedToCreateInstance => "BrotliFailedToCreateInstance",
            Self::BrotliDecompressionError => "BrotliDecompressionError",
            Self::ShortRead => "ShortRead",
        }
    }
}

View on GitHub (pinned to 8c5296ac45)

When it happens

Trigger: Thrown at src/brotli/error.rs:5 when the library encounters an invalid state.

Common situations: See trigger scenarios.


AI-assisted analysis of oven-sh/bun@8c5296ac45 (2026-08-16). Data as JSON: /api/errors/30b95611bd54bbea. Report an issue: GitHub.