Trait combine::stream::Resetable[][src]

pub trait Resetable {
    type Checkpoint: Clone;
    fn checkpoint(&self) -> Self::Checkpoint;
fn reset(&mut self, checkpoint: Self::Checkpoint); }

Associated Types

type Checkpoint: Clone[src]

Required methods

fn checkpoint(&self) -> Self::Checkpoint[src]

fn reset(&mut self, checkpoint: Self::Checkpoint)[src]

Implementations on Foreign Types

impl<'a> Resetable for &'a str[src][]

type Checkpoint = Self

impl<'a, T> Resetable for &'a [T][src][]

type Checkpoint = Self

Implementors

impl Resetable for IndexPositioner[src][+]

type Checkpoint = Self

impl Resetable for SourcePosition[src][+]

type Checkpoint = Self

impl<'a, T> Resetable for SliceStream<'a, T>[src][+]

type Checkpoint = Self

impl<I> Resetable for BufferedStream<I> where
    I: Positioned
[src][+]

impl<I, X> Resetable for State<I, X> where
    I: Resetable,
    X: Resetable
[src][+]

impl<S> Resetable for Stream<S> where
    S: Resetable
[src][+]

impl<S> Resetable for PartialStream<S> where
    S: Resetable
[src][+]

impl<T: Clone> Resetable for IteratorStream<T>[src][+]

type Checkpoint = Self