spring_batch_rs/item/
mod.rs

1#[cfg(feature = "logger")]
2/// This module provides a logger item reader and writer implementation for Spring Batch.
3pub mod logger;
4
5#[cfg(feature = "csv")]
6/// This module provides a CSV item reader and writer implementation for Spring Batch.
7pub mod csv;
8
9#[cfg(feature = "fake")]
10/// This module provides a fake item reader and writer implementation for Spring Batch.
11pub mod fake;
12
13#[cfg(feature = "json")]
14/// This module provides a JSON item reader and writer implementation for Spring Batch.
15pub mod json;
16
17#[cfg(feature = "rdbc-postgres")]
18/// This module provides an RDBC (PostgreSQL) item reader and writer implementation for Spring Batch.
19pub mod rdbc;
20
21#[cfg(feature = "mongodb")]
22/// This module provides a MongoDB item reader and writer implementation for Spring Batch.
23pub mod mongodb;