pub enum ShimItem<B> {
Text(String),
Box(B),
}Expand description
One ordered item produced by a completed native Codex turn.
Variants§
Text(String)
Assistant text remaining after the final call wave.
Box(B)
Reserved canonical box output.
Trait Implementations§
impl<B> StructuralPartialEq for ShimItem<B>where
B: PartialEq,
Auto Trait Implementations§
impl<B> Freeze for ShimItem<B>where
B: Freeze,
impl<B> RefUnwindSafe for ShimItem<B>where
B: RefUnwindSafe,
impl<B> Send for ShimItem<B>where
B: Send,
impl<B> Sync for ShimItem<B>where
B: Sync,
impl<B> Unpin for ShimItem<B>where
B: Unpin,
impl<B> UnsafeUnpin for ShimItem<B>where
B: UnsafeUnpin,
impl<B> UnwindSafe for ShimItem<B>where
B: UnwindSafe,
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