Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion capnpc/src/codegen_types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,17 @@ impl<'a> RustTypeInfo for type_::Reader<'a> {
))
}
type_::AnyPointer(_) => {
Err(Error::failed("List(AnyPointer) is unsupported".to_string()))
// This is actually an AnyList, which means we just return an anypointer and
// let the user cast it appropriately.
match module {
Leaf::Reader(lifetime) => {
Ok(fmt!(ctx, "{capnp}::any_pointer::Reader<{lifetime}>"))
}
Leaf::Builder(lifetime) => {
Ok(fmt!(ctx, "{capnp}::any_pointer::Builder<{lifetime}>"))
}
_ => Ok(fmt!(ctx, "{capnp}::any_pointer::{module}")),
}
}
_ => {
let inner = element_type.type_string(ctx, Leaf::Owned)?;
Expand Down