From 0d630702241e1803cd136268cef2c857031ffac4 Mon Sep 17 00:00:00 2001 From: "Jorge C. Leitao" Date: Tue, 21 Dec 2021 16:54:49 +0000 Subject: [PATCH] Added guide. --- guide/src/io/avro_write.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 guide/src/io/avro_write.md diff --git a/guide/src/io/avro_write.md b/guide/src/io/avro_write.md new file mode 100644 index 00000000000..ca84219356e --- /dev/null +++ b/guide/src/io/avro_write.md @@ -0,0 +1,8 @@ +# Avro write + +You can use this crate to write to Apache Avro. +Below is an example, which you can run when this crate is compiled with feature `io_avro`. + +```rust +{{#include ../../../examples/avro_write.rs}} +```