This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use core::future::Future; | |
use core::pin::Pin; | |
use core::task::Poll; | |
use futures_core::Stream; | |
/// Item to return from stream. | |
pub struct StreamItem { | |
pub append_length: usize, | |
} | |
/// State shared between each sequential item computation. |