Type Alias StreamBodyResult

Source
pub type StreamBodyResult<T> = Result<T, StreamBodyError>;
Expand description

Alias for the Result type returned by streaming responses.

Aliased Type§

pub enum StreamBodyResult<T> {
    Ok(T),
    Err(StreamBodyError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(StreamBodyError)

Contains the error value