Trait App

Source
pub trait App: ApplicationXX {
    type AppState: Serialize;

    // Required method
    fn app_state(&self) -> Self::AppState;
}
Expand description

ABCI Application of tendermint

Required Associated Types§

Required Methods§

Source

fn app_state(&self) -> Self::AppState

Implementations on Foreign Types§

Source§

impl App for ()

Implementors§