Skip to main content

StreamChunk

Type Alias StreamChunk 

Source
pub type StreamChunk = Result<String, String>;
Expand description

A single chunk in a streaming SSR response.

Aliased Type§

pub enum StreamChunk {
    Ok(String),
    Err(String),
}

Variants§

§1.0.0

Ok(String)

Contains the success value

§1.0.0

Err(String)

Contains the error value