pub struct FsmBackendImpl<F: FsmBackend> {
    pub context: <F as FsmBackend>::Context,
    pub states: <F as FsmBackend>::States,
    pub current_states: <<F as FsmBackend>::States as FsmStates<F>>::CurrentState,
}
Expand description

The struct that holds the core context and state of the given Finny FSM. Doesn’t include environmental traits that can be changed at runtime.

Fields

context: <F as FsmBackend>::Contextstates: <F as FsmBackend>::Statescurrent_states: <<F as FsmBackend>::States as FsmStates<F>>::CurrentState

Implementations

Trait Implementations

The resulting type after dereferencing.

Dereferences the value.

Mutably dereferences the value.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.