Occasionally it's useful to be able to convert a struct into one of its fields without cloning, and without destructuring.
We could generate methods like:
pub fn into_field(self) -> Field {
self.field
}
Although I'm not sure if it's worth the complexity