Sets the file format for the table. # Parameters `format`: The file format to use (e.g., CSV, Parquet).
(&mut self, format: ConfigFileType)
| 2313 | /// |
| 2314 | /// * `format`: The file format to use (e.g., CSV, Parquet). |
| 2315 | pub fn set_config_format(&mut self, format: ConfigFileType) { |
| 2316 | self.current_format = Some(format); |
| 2317 | } |
| 2318 | |
| 2319 | /// Sets the extensions for this `TableOptions` instance. |
| 2320 | /// |
no outgoing calls