Skip to main content

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 = "xml")]
18/// This module provides an XML item reader and writer implementation for Spring Batch.
19pub mod xml;
20
21#[cfg(feature = "rdbc")]
22/// This module provides an RDBC item reader and writer implementation for Spring Batch.
23pub mod rdbc;
24
25#[cfg(feature = "mongodb")]
26/// This module provides a MongoDB item reader and writer implementation for Spring Batch.
27pub mod mongodb;
28
29#[cfg(feature = "orm")]
30/// This module provides an ORM item reader and writer implementation for Spring Batch (SeaORM-based).
31pub mod orm;