Skip to main content

Machine

Struct Machine 

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

Implementations§

Source§

impl<A: Address, S, M, P: Copy + PartialEq, E> Machine<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 Machine<A, S, M, P, E>
where A: Address, P: Copy + PartialEq,

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§

fn init(&mut self) -> Result<Actions<A, Never, Self::Sends, NoBirths>, E>

Produce initialization actions before the first event is accepted. Read more
Source§

fn transition( &mut self, event: Self::Event, ) -> Result<Actions<A, Never, Self::Sends, NoBirths>, E>

Fold exactly one event into explicit actions and the next behavior. Read more
Source§

fn receive( &mut self, from: Self::Addr, message: Self::Msg, ) -> BehaviorActed<Self>
where Self: Sized,

Fold one user communication through the composed protocol. Read more
Source§

fn on<Input>(&mut self, input: Input) -> BehaviorActed<Self>
where Self: Sized, Self::Event: EventInput<Input>,

Inject one supported semantic input and fold it through this behavior. Read more

Auto Trait Implementations§

§

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

§

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

§

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

§

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

§

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

§

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

§

impl<A, S, M, P, E> UnwindSafe for Machine<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.