stream-body 0.1.1

An HttpBody implementation with efficient streaming support for the Rust HTTP library hyper
Documentation
1
2
3
4
5
6
use std::task::Waker;

pub(crate) struct State {
    pub(crate) is_current_stream_data_consumed: bool,
    pub(crate) waker: Option<Waker>,
}