pub struct DaemonStateMachine;Trait Implementations§
Source§impl Clone for DaemonStateMachine
impl Clone for DaemonStateMachine
Source§fn clone(&self) -> DaemonStateMachine
fn clone(&self) -> DaemonStateMachine
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DaemonStateMachine
impl Debug for DaemonStateMachine
Source§impl StateMachineImpl for DaemonStateMachine
impl StateMachineImpl for DaemonStateMachine
Source§const INITIAL_STATE: Self::State = {transmute(0x01): <daemon::DaemonStateMachine as rust_fsm::StateMachineImpl>::State}
const INITIAL_STATE: Self::State = {transmute(0x01): <daemon::DaemonStateMachine as rust_fsm::StateMachineImpl>::State}
The initial state of the machine.
Source§type Input = DaemonStateMachineInput
type Input = DaemonStateMachineInput
The input alphabet.
Source§type State = DaemonStateMachineState
type State = DaemonStateMachineState
The set of possible states.
Source§type Output = DaemonStateMachineOutput
type Output = DaemonStateMachineOutput
The output alphabet.
Auto Trait Implementations§
impl Freeze for DaemonStateMachine
impl RefUnwindSafe for DaemonStateMachine
impl Send for DaemonStateMachine
impl Sync for DaemonStateMachine
impl Unpin for DaemonStateMachine
impl UnwindSafe for DaemonStateMachine
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