Appends a [`FieldRef`] to this [`SchemaBuilder`] without checking for collision
(&mut self, field: impl Into<FieldRef>)
| 47 | |
| 48 | /// Appends a [`FieldRef`] to this [`SchemaBuilder`] without checking for collision |
| 49 | pub fn push(&mut self, field: impl Into<FieldRef>) { |
| 50 | self.fields.push(field.into()) |
| 51 | } |
| 52 | |
| 53 | /// Removes and returns the [`FieldRef`] as index `idx` |
| 54 | /// |
no outgoing calls