Trait combine::stream::ResetStream[][src]

pub trait ResetStream: StreamOnce {
    type Checkpoint: Clone;
    fn checkpoint(&self) -> Self::Checkpoint;
fn reset(&mut self, checkpoint: Self::Checkpoint) -> Result<(), Self::Error>; }
Expand description

A StreamOnce which can create checkpoints which the stream can be reset to

Associated Types

Required methods

Creates a Checkpoint at the current position which can be used to reset the stream later to the current position

Attempts to reset the stream to an earlier position.

Implementations on Foreign Types

Implementors

This is supported on crate feature std only.
This is supported on crate feature std only.