Type Alias UpsertValue

Source
pub type UpsertValue = Result<Row, Box<UpsertError>>;

Aliased Type§

pub enum UpsertValue {
    Ok(Row),
    Err(Box<UpsertError>),
}

Variants§

§1.0.0

Ok(Row)

Contains the success value

§1.0.0

Err(Box<UpsertError>)

Contains the error value