support for Vec and Box?
Opened this issue · 0 comments
barko commented
I'd like to sexp-derive the following:
#[derive(SexpOf, OfSexp)]
pub struct XXX {
pub v: Option<Vec<String>>,
}
This does not work, nor does Box<String>
. Both Option<String>
and Vec<String>
work. With binprot-rs's derivers, all of these work.