datagen 0.1.4

An easy to use tool to generate fake data in bulk and export it as Avro, Parquet or directly into your database as tables
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::errors::DataGenResult;
use crate::DValue;

pub mod avro_schema_utils;
pub mod csv_sink;
pub mod avro_sink;
pub mod json_sink;

pub trait Sink {
    fn write(&mut self, value: DValue) -> DataGenResult<()>;
}