Expand description
transferred-core — connector-agnostic types: traits, error type, run report.
Structs§
- Coercion
- A single type coercion applied during a run.
- RunReport
- Post-run statistics returned by
Transfer::run(). - Transfer
- Orchestrates a single end-to-end run from a
Sourceto aDestination.
Enums§
- Coercion
Level - Severity of a recorded coercion.
Info= Tier 1 lossless.Warn= Tier 2 lossy-structural. Tier 3 (lossy-semantic) coercions are not recorded — they fail the run viaElError::Coercion. - ElError
- Root error type. Every fallible operation in
elreturnsResult<T, ElError>. Maps to Pythonel.ElErrorat the FFI boundary.
Traits§
- Destination
- A destination. Writes batch partitions atomically and reports stats.
- Source
- A data source. Yields one or more partitions of Arrow batches.
Type Aliases§
- Batch
Stream - Boxed
Streamof Arrow batches — one partition’s data. - Result