From: Matt Corallo Date: Mon, 6 Sep 2021 00:53:56 +0000 (+0000) Subject: Map Vecs to slices when constructing a getter for a public field X-Git-Tag: v0.0.101.1~1^2~22 X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=6adbe96a03e129820d161b12bff80e748c68f68e;hp=6adbe96a03e129820d161b12bff80e748c68f68e;p=ldk-c-bindings Map Vecs to slices when constructing a getter for a public field This adds logic to allow constructing a getter for a public Vec field where the inner items are opaque structs. In order to do this we map them as slices, which will end up generating Vecs with elements which all have their `is_owned` flags unset. ---