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

Required Methods

Implementations on Foreign Types

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

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

Implementors