pub type RowOutcome = Result<(), FaucetError>;Expand description
Per-row outcome from Sink::write_batch_partial.
Ok(()) — the row was durably written to the sink.
Err(_) — the row failed; the pipeline will route it to the DLQ when
one is configured.
Aliased Type§
pub enum RowOutcome {
Ok(()),
Err(FaucetError),
}