diff --git a/src/stepper.rs b/src/stepper.rs index db9e367..6307909 100644 --- a/src/stepper.rs +++ b/src/stepper.rs @@ -21,15 +21,6 @@ pub trait PollStep: StepError { } } -/* -impl>> PollStep for Stepper { - #[inline] - fn poll_step(&mut self, context: &mut C) -> Poll> { - self.step(context)?.map(Ok) - } -} -*/ - impl> Step> for Stepper { #[inline] fn step(&mut self, context: &mut C) -> Result, Self::Error> { @@ -40,10 +31,6 @@ impl> Step> for Stepper { } } -pub trait StepBack: StepError { - fn step_back(&mut self, context: &mut C) -> Result; -} - pub trait Abort { fn abort(&mut self, context: &mut C); }