Accent Types アクセントの種類|Numbers 数字|Counters 数え方|Suffixes|Verbs 動詞|Adjectives 形容詞|Prefixes|〜もの|Special Common Exceptions|Regions, Cities & Places|Names|Trends
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. |