Module tfrecord::writer[][src]

Writing TFRecord data format.

The RecordWriter is initialized by RecordWriterInit. It can write either Example, RawExampple, Vec<u8>, and many other record types. that implements GenericRecord, depending on your choice.

The type aliases ExampleWriter, RawExampleWriter and BytesWriter are RecordWriter writing specific record types.

Structs

RecordWriter

The writer type.

RecordWriterInit

The writer initializer.

Type Definitions

BytesWriter

Alias to RecordWriter which input record type is Vec.

ExampleWriter

Alias to RecordWriter which input record type is Example.

RawExampleWriter

Alias to RecordWriter which input record type is RawExample.