pub enum Step<T> {
Break(T),
Wait(GetStatus<WaitState<T>>, u64),
}
Expand description
A step when waiting for a state.
Variants§
Break(T)
Wait(GetStatus<WaitState<T>>, u64)
The state has not been reached and the status of the device must be queried.
Auto Trait Implementations§
impl<T> Freeze for Step<T>where
T: Freeze,
impl<T> RefUnwindSafe for Step<T>where
T: RefUnwindSafe,
impl<T> Send for Step<T>where
T: Send,
impl<T> Sync for Step<T>where
T: Sync,
impl<T> Unpin for Step<T>where
T: Unpin,
impl<T> UnwindSafe for Step<T>where
T: 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