Skip to main content

Fsm

Struct Fsm 

Source
pub struct Fsm<A: Address, S, M, P, E> { /* private fields */ }

Implementations§

Source§

impl<A: Address, S, M, P: Copy + PartialEq, E> Fsm<A, S, M, P, E>

Source

pub fn new( state: S, phase: P, on: fn(P, &mut S, &M) -> Result<Move<P>, E>, ) -> Self

Source

pub fn state(&self) -> &S

Source

pub fn phase(&self) -> P

Source

pub fn held(&self) -> usize

Trait Implementations§

Source§

impl<A, S, M, P, E> Behavior for Fsm<A, S, M, P, E>
where A: Address + Send, A::Nonce: Send, S: Send, M: Send, P: Copy + PartialEq + Send, E: Send,

Source§

type Addr = A

Source§

type Msg = M

Source§

type Event = User<A, M>

Source§

type Sends = Vec<Delivery<A, Never>>

Source§

type Ph = Never

Source§

type Error = E

Source§

type Birth = NoBirths

Source§

type Effect = Actions<A, Never, <Fsm<A, S, M, P, E> as Behavior>::Sends, NoBirths>

Source§

type Done = Exit<A>

Source§

async fn init(&mut self) -> Result<Self::Effect, E>

Source§

async fn step(&mut self, event: Self::Event) -> Result<Self::Effect, E>

Auto Trait Implementations§

§

impl<A, S, M, P, E> Freeze for Fsm<A, S, M, P, E>
where S: Freeze, P: Freeze,

§

impl<A, S, M, P, E> RefUnwindSafe for Fsm<A, S, M, P, E>

§

impl<A, S, M, P, E> Send for Fsm<A, S, M, P, E>
where S: Send, P: Send, A: Send, M: Send,

§

impl<A, S, M, P, E> Sync for Fsm<A, S, M, P, E>
where S: Sync, P: Sync, A: Sync, M: Sync,

§

impl<A, S, M, P, E> Unpin for Fsm<A, S, M, P, E>
where S: Unpin, P: Unpin, A: Unpin, M: Unpin,

§

impl<A, S, M, P, E> UnsafeUnpin for Fsm<A, S, M, P, E>
where S: UnsafeUnpin, P: UnsafeUnpin,

§

impl<A, S, M, P, E> UnwindSafe for Fsm<A, S, M, P, E>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.