pub type StreamChunk = Result<String, String>;
A single chunk in a streaming SSR response.
pub enum StreamChunk { Ok(String), Err(String), }
Contains the success value
Contains the error value