1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
use ocaml::{FromValue, IntoValue, Runtime, Value};
use ocaml_gen::{const_random, Env, OCamlDesc};

pub struct CamlBytesString<'a>(pub &'a [u8]);

unsafe impl<'a> IntoValue for CamlBytesString<'a> {
    fn into_value(self, rt: &Runtime) -> Value {
        self.0.into_value(rt)
    }
}

unsafe impl<'a> FromValue<'a> for CamlBytesString<'a> {
    fn from_value(v: Value) -> Self {
        CamlBytesString(FromValue::from_value(v))
    }
}

impl<'a> OCamlDesc for CamlBytesString<'a> {
    fn ocaml_desc(_env: &Env, _generics: &[&str]) -> String {
        "string".to_string()
    }

    fn unique_id() -> u128 {
        const_random!(u128)
    }
}