pglite-oxide 0.3.0

Rust helpers for embedding the Electric SQL pglite WebAssembly PostgreSQL runtime
Documentation
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
pub enum Mode {
    Text = 0,
    Binary = 1,
}

impl Mode {
    pub fn as_i16(self) -> i16 {
        match self {
            Mode::Text => 0,
            Mode::Binary => 1,
        }
    }
}

impl TryFrom<i16> for Mode {
    type Error = &'static str;

    fn try_from(value: i16) -> Result<Self, Self::Error> {
        match value {
            0 => Ok(Mode::Text),
            1 => Ok(Mode::Binary),
            _ => Err("invalid mode"),
        }
    }
}

pub struct Modes;

impl Modes {
    pub const TEXT: Mode = Mode::Text;
    pub const BINARY: Mode = Mode::Binary;
}

pub type BufferParameter<'a> = &'a [u8];