(mut self, nullable: bool)
| 1160 | } |
| 1161 | |
| 1162 | fn with_nullable(mut self, nullable: bool) -> Self { |
| 1163 | Arc::make_mut(&mut self.field).set_nullable(nullable); |
| 1164 | self |
| 1165 | } |
| 1166 | |
| 1167 | fn with_data_type(mut self, data_type: DataType) -> Self { |
| 1168 | Arc::make_mut(&mut self.field).set_data_type(data_type); |
no outgoing calls