[][src]Enum xaynet_server::state_machine::StateMachine

pub enum StateMachine<C, M> where
    C: CoordinatorStorage,
    M: ModelStorage
{ Idle(PhaseState<Idle, C, M>), Sum(PhaseState<Sum, C, M>), Update(PhaseState<Update, C, M>), Sum2(PhaseState<Sum2, C, M>), Unmask(PhaseState<Unmask, C, M>), Error(PhaseState<PhaseStateError, C, M>), Shutdown(PhaseState<Shutdown, C, M>), }

The state machine with all its states.

Variants

Idle(PhaseState<Idle, C, M>)
Sum(PhaseState<Sum, C, M>)
Update(PhaseState<Update, C, M>)
Sum2(PhaseState<Sum2, C, M>)
Unmask(PhaseState<Unmask, C, M>)
Shutdown(PhaseState<Shutdown, C, M>)

Implementations

impl<C, M> StateMachine<C, M> where
    PhaseState<Idle, C, M>: Phase<C, M>,
    PhaseState<Sum, C, M>: Phase<C, M>,
    PhaseState<Update, C, M>: Phase<C, M>,
    PhaseState<Sum2, C, M>: Phase<C, M>,
    PhaseState<Unmask, C, M>: Phase<C, M>,
    PhaseState<PhaseStateError, C, M>: Phase<C, M>,
    PhaseState<Shutdown, C, M>: Phase<C, M>,
    C: CoordinatorStorage,
    M: ModelStorage
[src]

pub async fn next(self) -> Option<Self>[src]

Moves the StateMachine to the next state and consumes the current one. Returns the next state or None if the StateMachine reached the state Shutdown.

pub async fn run(self) -> Option<()>[src]

Runs the state machine until it shuts down. The StateMachine shuts down once all RequestSender have been dropped.

Trait Implementations

impl<C, M> From<PhaseState<Idle, C, M>> for StateMachine<C, M> where
    C: CoordinatorStorage,
    M: ModelStorage
[src]

impl<C, M> From<PhaseState<PhaseStateError, C, M>> for StateMachine<C, M> where
    C: CoordinatorStorage,
    M: ModelStorage
[src]

impl<C, M> From<PhaseState<Shutdown, C, M>> for StateMachine<C, M> where
    C: CoordinatorStorage,
    M: ModelStorage
[src]

impl<C, M> From<PhaseState<Sum, C, M>> for StateMachine<C, M> where
    C: CoordinatorStorage,
    M: ModelStorage
[src]

impl<C, M> From<PhaseState<Sum2, C, M>> for StateMachine<C, M> where
    C: CoordinatorStorage,
    M: ModelStorage
[src]

impl<C, M> From<PhaseState<Unmask, C, M>> for StateMachine<C, M> where
    C: CoordinatorStorage,
    M: ModelStorage
[src]

impl<C, M> From<PhaseState<Update, C, M>> for StateMachine<C, M> where
    C: CoordinatorStorage,
    M: ModelStorage
[src]

Auto Trait Implementations

impl<C, M> !RefUnwindSafe for StateMachine<C, M>[src]

impl<C, M> Send for StateMachine<C, M>[src]

impl<C, M> Sync for StateMachine<C, M>[src]

impl<C, M> Unpin for StateMachine<C, M> where
    C: Unpin,
    M: Unpin
[src]

impl<C, M> !UnwindSafe for StateMachine<C, M>[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]