pub struct LazyStateMachineRs<S, I> { /* private fields */ }Expand description
A lazy state machine that transitions lazily.
Each transition is deferred until the state is actually needed.
Implementations§
Source§impl<S: Clone + 'static, I: 'static> LazyStateMachineRs<S, I>
impl<S: Clone + 'static, I: 'static> LazyStateMachineRs<S, I>
Auto Trait Implementations§
impl<S, I> Freeze for LazyStateMachineRs<S, I>
impl<S, I> !RefUnwindSafe for LazyStateMachineRs<S, I>
impl<S, I> !Send for LazyStateMachineRs<S, I>
impl<S, I> !Sync for LazyStateMachineRs<S, I>
impl<S, I> Unpin for LazyStateMachineRs<S, I>
impl<S, I> UnsafeUnpin for LazyStateMachineRs<S, I>
impl<S, I> !UnwindSafe for LazyStateMachineRs<S, I>
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