Trait valuable_futures::StateMachine [] [src]

pub trait StateMachine: Sized {
    type Supply;
    type Item;
    type Error;
    fn poll(
        self,
        _: &mut Self::Supply
    ) -> Result<Async<Self::Item, Self>, Self::Error>; }

Associated Types

Required Methods

Implementors