pub struct TextDeltaRenderer;Trait Implementations§
Source§impl DeltaRenderer for TextDeltaRenderer
impl DeltaRenderer for TextDeltaRenderer
Source§fn render_first_delta(
accumulated: &str,
prefix: &str,
colors: Colors,
terminal_mode: TerminalMode,
) -> String
fn render_first_delta( accumulated: &str, prefix: &str, colors: Colors, terminal_mode: TerminalMode, ) -> String
Render the first delta of a content block. Read more
Source§fn render_subsequent_delta(
_accumulated: &str,
_prefix: &str,
_colors: Colors,
terminal_mode: TerminalMode,
) -> String
fn render_subsequent_delta( _accumulated: &str, _prefix: &str, _colors: Colors, terminal_mode: TerminalMode, ) -> String
Render a subsequent delta (in-place update). Read more
Source§fn render_completion(terminal_mode: TerminalMode) -> String
fn render_completion(terminal_mode: TerminalMode) -> String
Render the completion of streaming. Read more
Auto Trait Implementations§
impl Freeze for TextDeltaRenderer
impl RefUnwindSafe for TextDeltaRenderer
impl Send for TextDeltaRenderer
impl Sync for TextDeltaRenderer
impl Unpin for TextDeltaRenderer
impl UnwindSafe for TextDeltaRenderer
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more