Obtain a mutable reference to the inner [`Row`].
(&mut self)
| 318 | impl BodyRow { |
| 319 | /// Obtain a mutable reference to the inner [`Row`]. |
| 320 | fn inner_mut(&mut self) -> &mut Row { |
| 321 | &mut self.0 |
| 322 | } |
| 323 | |
| 324 | /// Return the inner [`Row`]. |
| 325 | fn into_inner(self) -> Row { |
no outgoing calls
no test coverage detected