pub enum MachineUpdate<Machine>where
Machine: StateMachine,{
InvalidTransition,
Ok {
commands: Vec<Machine::Command>,
},
}
Variants§
Implementations§
Source§impl<M> MachineUpdate<M>where
M: StateMachine,
impl<M> MachineUpdate<M>where
M: StateMachine,
Auto Trait Implementations§
impl<Machine> Freeze for MachineUpdate<Machine>
impl<Machine> RefUnwindSafe for MachineUpdate<Machine>
impl<Machine> Send for MachineUpdate<Machine>
impl<Machine> Sync for MachineUpdate<Machine>
impl<Machine> Unpin for MachineUpdate<Machine>
impl<Machine> UnwindSafe for MachineUpdate<Machine>
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