pixman 0.2.1

Pixman is a low-level software library for pixel manipulation, providing features such as image compositing and trapezoid rasterization.
Documentation
use pixman_sys as ffi;
use thiserror::Error;

/// Defiens the possible dither operations
#[derive(Debug, Clone, Copy)]
pub enum Dither {
    /// No dithering
    None,
    /// Fast dithering
    Fast,
    /// Good dithering
    Good,
    /// Best dithering
    Best,
    /// Ordered bayer 8 dithering
    OrderedBayer8,
    /// Ordered blue noise 64
    OrderedBlueNoise64,
}

/// The dither operation is unknown
#[derive(Debug, Error)]
#[error("Unknown dither {0}")]
pub struct UnknownDither(ffi::pixman_dither_t);

impl TryFrom<ffi::pixman_dither_t> for Dither {
    type Error = UnknownDither;

    fn try_from(value: ffi::pixman_dither_t) -> Result<Self, Self::Error> {
        let repeat = match value {
            ffi::pixman_dither_t_PIXMAN_DITHER_NONE => Dither::None,
            ffi::pixman_dither_t_PIXMAN_DITHER_FAST => Dither::Fast,
            ffi::pixman_dither_t_PIXMAN_DITHER_GOOD => Dither::Good,
            ffi::pixman_dither_t_PIXMAN_DITHER_BEST => Dither::Best,
            ffi::pixman_dither_t_PIXMAN_DITHER_ORDERED_BAYER_8 => Dither::OrderedBayer8,
            ffi::pixman_dither_t_PIXMAN_DITHER_ORDERED_BLUE_NOISE_64 => Dither::OrderedBlueNoise64,
            _ => return Err(UnknownDither(value)),
        };
        Ok(repeat)
    }
}

impl From<Dither> for ffi::pixman_dither_t {
    fn from(value: Dither) -> Self {
        match value {
            Dither::None => ffi::pixman_dither_t_PIXMAN_DITHER_NONE,
            Dither::Fast => ffi::pixman_dither_t_PIXMAN_DITHER_FAST,
            Dither::Good => ffi::pixman_dither_t_PIXMAN_DITHER_GOOD,
            Dither::Best => ffi::pixman_dither_t_PIXMAN_DITHER_BEST,
            Dither::OrderedBayer8 => ffi::pixman_dither_t_PIXMAN_DITHER_ORDERED_BAYER_8,
            Dither::OrderedBlueNoise64 => ffi::pixman_dither_t_PIXMAN_DITHER_ORDERED_BLUE_NOISE_64,
        }
    }
}