Trait Stateful

Source
pub trait Stateful {
    type State: RawState;
}
Expand description

a trait for denoting stateful entities

Required Associated Types§

Implementors§

Source§

impl<Q, T> Stateful for State<Q, T>

Source§

type State = State<Q, T>