Removes and returns the [`FieldRef`] as index `idx` # Panics Panics if index out of bounds
(&mut self, idx: usize)
| 56 | /// |
| 57 | /// Panics if index out of bounds |
| 58 | pub fn remove(&mut self, idx: usize) -> FieldRef { |
| 59 | self.fields.remove(idx) |
| 60 | } |
| 61 | |
| 62 | /// Returns an immutable reference to the [`FieldRef`] at index `idx` |
| 63 | /// |
no outgoing calls