pub trait ChainState {
    type Out: StateInterface;

    fn state(&self) -> Self::Out;
}

Required Associated Types

Required Methods

Implementors