Skip to main content

TerminalSink

Struct TerminalSink 

Source
pub struct TerminalSink<W: Write> { /* private fields */ }
Expand description

Routes viz output into the markdown token renderer.

Implementations§

Source§

impl<W: Write> TerminalSink<W>

Source

pub fn new(renderer: TokenRenderer<W>) -> Self

Wraps a token renderer as a RenderSink.

Source

pub fn renderer_mut(&mut self) -> &mut TokenRenderer<W>

Borrows the underlying renderer, for callers that need to drive it directly (fence handling, capture, finish).

Source

pub fn into_renderer(self) -> TokenRenderer<W>

Consumes the sink and returns the renderer.

Trait Implementations§

Source§

impl<W: Debug + Write> Debug for TerminalSink<W>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<W: Write> RenderSink for TerminalSink<W>

Source§

fn visible_text(&mut self, text: &str)

Receives ordinary visible output.
Source§

fn think_text(&mut self, text: &str)

Receives text produced inside a <think> block.
Source§

fn tool_text(&mut self, text: &str)

Receives tool banner output (never markdown); defaults to visible.
Source§

fn error_text(&mut self, text: &str)

Receives error banners (e.g. [invalid tool call: ...]); sinks should style these red. Defaults to tool text.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.