Trait RowWriterAction

Source
trait RowWriterAction {
    type Output<'a>;

    const RECORD_TYPE: RecordType;

    // Required methods
    fn output_for<'a>(datum: impl Into<DatumCow<'a>>) -> Self::Output<'a>;
    fn apply(builder: &mut ArrayBuilderImpl, output: Self::Output<'_>);
    fn rollback(builder: &mut ArrayBuilderImpl);
}

Required Associated Constants§

Source

const RECORD_TYPE: RecordType

Required Associated Types§

Source

type Output<'a>

Required Methods§

Source

fn output_for<'a>(datum: impl Into<DatumCow<'a>>) -> Self::Output<'a>

Source

fn apply(builder: &mut ArrayBuilderImpl, output: Self::Output<'_>)

Source

fn rollback(builder: &mut ArrayBuilderImpl)

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl RowWriterAction for DeleteAction

Source§

const RECORD_TYPE: RecordType = RecordType::Delete

Source§

type Output<'a> = DatumCow<'a>

Source§

impl RowWriterAction for InsertAction

Source§

const RECORD_TYPE: RecordType = RecordType::Insert

Source§

type Output<'a> = DatumCow<'a>

Source§

impl RowWriterAction for UpdateAction

Source§

const RECORD_TYPE: RecordType = RecordType::Update

Source§

type Output<'a> = (DatumCow<'a>, DatumCow<'a>)