enum UnionReadPlan {
ReaderUnion {
lookup_table: DispatchLookupTable,
},
FromSingle {
reader_idx: usize,
promotion: Promotion,
},
ToSingle {
target: Box<Decoder>,
lookup_table: DispatchLookupTable,
},
Passthrough,
}