transferred_core/lib.rs
1//! `transferred-core` — connector-agnostic types: traits, error type, run report.
2
3mod error;
4mod report;
5#[cfg(feature = "dev")]
6pub mod test_utils;
7mod transfer;
8
9pub use error::ElError;
10pub use report::{Coercion, CoercionLevel, RunReport};
11pub use transfer::{BatchStream, Destination, Source, Transfer};
12
13pub type Result<T> = std::result::Result<T, ElError>;