Skip to main content

RowOutcome

Type Alias RowOutcome 

Source
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),
}

Variants§

§1.0.0

Ok(())

Contains the success value

§1.0.0

Err(FaucetError)

Contains the error value