Skip to main content

StreamCallback

Type Alias StreamCallback 

Source
pub type StreamCallback = Box<dyn FnMut(&str) -> Result<(), ()> + Send>;
Expand description

Callback for streaming text chunks. Return Ok(()) to continue streaming, or Err to stop early.

Aliased Typeยง

pub struct StreamCallback(/* private fields */);