Struct google_cloud_bigquery::storage::ipc::writer::FileWriter
pub struct FileWriter<W>where
W: Write,{ /* private fields */ }Implementations§
§impl<W> FileWriter<W>where
W: Write,
impl<W> FileWriter<W>where W: Write,
pub fn try_new(writer: W, schema: &Schema) -> Result<FileWriter<W>, ArrowError>
pub fn try_new(writer: W, schema: &Schema) -> Result<FileWriter<W>, ArrowError>
Try create a new writer, with the schema written as part of the header
pub fn try_new_with_options(
writer: W,
schema: &Schema,
write_options: IpcWriteOptions
) -> Result<FileWriter<W>, ArrowError>
pub fn try_new_with_options( writer: W, schema: &Schema, write_options: IpcWriteOptions ) -> Result<FileWriter<W>, ArrowError>
Try create a new writer with IpcWriteOptions
pub fn write_metadata( &mut self, key: impl Into<String>, value: impl Into<String> )
pub fn write(&mut self, batch: &RecordBatch) -> Result<(), ArrowError>
pub fn write(&mut self, batch: &RecordBatch) -> Result<(), ArrowError>
Write a record batch to the file
pub fn finish(&mut self) -> Result<(), ArrowError>
pub fn finish(&mut self) -> Result<(), ArrowError>
Write footer and closing tag, then mark the writer as done
pub fn get_mut(&mut self) -> &mut W
pub fn get_mut(&mut self) -> &mut W
Gets a mutable reference to the underlying writer.
It is inadvisable to directly write to the underlying writer.
pub fn into_inner(self) -> Result<W, ArrowError>
pub fn into_inner(self) -> Result<W, ArrowError>
Unwraps the BufWriter housed in FileWriter.writer, returning the underlying writer
The buffer is flushed and the FileWriter is finished before returning the writer.
Trait Implementations§
§impl<W> RecordBatchWriter for FileWriter<W>where
W: Write,
impl<W> RecordBatchWriter for FileWriter<W>where W: Write,
§fn write(&mut self, batch: &RecordBatch) -> Result<(), ArrowError>
fn write(&mut self, batch: &RecordBatch) -> Result<(), ArrowError>
Write a single batch to the writer.
§fn close(self) -> Result<(), ArrowError>
fn close(self) -> Result<(), ArrowError>
Write footer or termination data, then mark the writer as done.
Auto Trait Implementations§
impl<W> RefUnwindSafe for FileWriter<W>where W: RefUnwindSafe,
impl<W> Send for FileWriter<W>where W: Send,
impl<W> Sync for FileWriter<W>where W: Sync,
impl<W> Unpin for FileWriter<W>where W: Unpin,
impl<W> UnwindSafe for FileWriter<W>where W: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request