Set the [`IpcWriteOptions`] used to encode the [`RecordBatch`]es for transport.
(mut self, options: IpcWriteOptions)
| 215 | |
| 216 | /// Set the [`IpcWriteOptions`] used to encode the [`RecordBatch`]es for transport. |
| 217 | pub fn with_options(mut self, options: IpcWriteOptions) -> Self { |
| 218 | self.options = options; |
| 219 | self |
| 220 | } |
| 221 | |
| 222 | /// Specify a schema for the RecordBatches being sent. If a schema |
| 223 | /// is not specified, an encoded Schema message will be sent when |
no outgoing calls
no test coverage detected