Struct arrow::ipc::writer::StreamWriter[][src]

pub struct StreamWriter<W: Write> { /* fields omitted */ }

Implementations

Try create a new writer, with the schema written as part of the header

Write a record batch to the stream

Write continuation bytes, and mark the stream as done

Unwraps the BufWriter housed in StreamWriter.writer, returning the underlying writer

The buffer is flushed and the StreamWriter is finished before returning the writer.

Errors

An [‘Err’] may be returned if an error occurs while finishing the StreamWriter or while flushing the buffer.

Example

// The result we expect from an empty schema
let expected = vec![
    255, 255, 255, 255,  64,   0,   0,   0,
     16,   0,   0,   0,   0,   0,  10,   0,
     14,   0,  12,   0,  11,   0,   4,   0,
     10,   0,   0,   0,  20,   0,   0,   0,
      0,   0,   0,   1,   4,   0,  10,   0,
     12,   0,   0,   0,   8,   0,   4,   0,
     10,   0,   0,   0,   8,   0,   0,   0,
      8,   0,   0,   0,   0,   0,   0,   0,
      0,   0,   0,   0,   0,   0,   0,   0,
    255, 255, 255, 255,   0,   0,   0,   0
];

let schema = Schema::new(vec![]);
let buffer: Vec<u8> = Vec::new();
let stream_writer = StreamWriter::try_new(buffer, &schema)?;

assert_eq!(stream_writer.into_inner()?, expected);

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.