pub struct Stepper<S> { /* private fields */ }Implementations§
Source§impl<S> Stepper<S>
impl<S> Stepper<S>
pub fn new(is_definition: bool, state: State, stream: S) -> Stepper<S>
pub fn take_stream(self) -> S
pub fn run<SS: Store, T: Table<Var = SS::Var>>( &mut self, context: &mut Context<SS>, table: &T, ) -> KResult<()>
pub fn step<SS: Store, T: Table<Var = SS::Var>>( &mut self, context: &mut Context<SS>, table: &T, ) -> KResult<Option<Action>>
Trait Implementations§
Auto Trait Implementations§
impl<S> Freeze for Stepper<S>where
S: Freeze,
impl<S> RefUnwindSafe for Stepper<S>where
S: RefUnwindSafe,
impl<S> Send for Stepper<S>where
S: Send,
impl<S> Sync for Stepper<S>where
S: Sync,
impl<S> Unpin for Stepper<S>where
S: Unpin,
impl<S> UnwindSafe for Stepper<S>where
S: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more