enum UnionReadPlan {
ReaderUnion {
lookup_table: DispatchLookupTable,
},
FromSingle {
reader_idx: usize,
promotion: Promotion,
},
ToSingle {
target: Box<Decoder>,
lookup_table: DispatchLookupTable,
},
Passthrough,
}
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for UnionReadPlan
impl RefUnwindSafe for UnionReadPlan
impl Send for UnionReadPlan
impl Sync for UnionReadPlan
impl Unpin for UnionReadPlan
impl UnwindSafe for UnionReadPlan
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more