pub struct ShimOutput<B> {
pub items: Vec<ShimItem<B>>,
}Expand description
Atomic terminal output from one native Codex turn.
Fields§
§items: Vec<ShimItem<B>>Empty, or one final assistant-text item.
Trait Implementations§
Source§impl<B: Clone> Clone for ShimOutput<B>
impl<B: Clone> Clone for ShimOutput<B>
Source§fn clone(&self) -> ShimOutput<B>
fn clone(&self) -> ShimOutput<B>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<B: Debug> Debug for ShimOutput<B>
impl<B: Debug> Debug for ShimOutput<B>
Source§impl<B: PartialEq> PartialEq for ShimOutput<B>
impl<B: PartialEq> PartialEq for ShimOutput<B>
impl<B: PartialEq> StructuralPartialEq for ShimOutput<B>
Auto Trait Implementations§
impl<B> Freeze for ShimOutput<B>
impl<B> RefUnwindSafe for ShimOutput<B>
impl<B> Send for ShimOutput<B>
impl<B> Sync for ShimOutput<B>
impl<B> Unpin for ShimOutput<B>
impl<B> UnsafeUnpin for ShimOutput<B>
impl<B> UnwindSafe for ShimOutput<B>
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