pub trait ChainState {
    type Out: StateInterface;

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

Required Associated Types§

Required Methods§

source

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

Implementors§