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<()>;
}