pub trait Target<A>where
    A: Action,
{ fn update(
        &mut self,
        action: A,
        state: A::State<'_>
    ) -> Result<A::Value, A::Error>; }

Required Methods

Implementors