Skip to main content

StateTableDriver

Trait StateTableDriver 

Source
trait StateTableDriver<T, E> {
    // Required method
    fn transition(
        &mut self,
        aat: &T,
        entry: &StateEntry<E>,
        has_cross_stream: bool,
        tuple_count: u32,
        c: &mut AatApplyContext<'_>,
    ) -> Option<()>;
}

Required Methods§

Source

fn transition( &mut self, aat: &T, entry: &StateEntry<E>, has_cross_stream: bool, tuple_count: u32, c: &mut AatApplyContext<'_>, ) -> Option<()>

Implementors§