fn foo(self, Box<u8>) generates the following fn foo(self, Box) In various places in the code I refer to type segments[0] but these need to be joined together.
fn foo(self, Box)
generates the following
fn foo(self, Box)
In various places in the code I refer to type segments[0] but these need to be joined together.