faucet-sink-csv 1.0.0

CSV file sink connector for the faucet-stream ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![cfg_attr(docsrs, feature(doc_cfg))]

//! # faucet-sink-csv
//!
//! CSV file sink connector for the faucet-stream ecosystem.
//!
//! Writes JSON records to a CSV file with configurable delimiter and headers.

pub mod config;
pub(crate) mod probe;
pub mod sink;

pub use faucet_core::{FaucetError, Sink};

pub use config::CsvSinkConfig;
pub use sink::CsvSink;