impl_conversion_with_field!() { /* proc-macro */ }
Expand description
Implement Into, AsRef and AsMut using a field
struct Test {
field: String,
};
impl_conversion_with_field!(<String> Test {field});
impl_conversion_with_field!() { /* proc-macro */ }
Implement Into, AsRef and AsMut using a field
struct Test {
field: String,
};
impl_conversion_with_field!(<String> Test {field});