pub trait ApplicationSpec: Default {
    type Cnf: Clone;
    type Ctx;
    type Msg;

    fn context(&self) -> &Self::Ctx;
    fn messages(&self) -> &Vec<Self::Msg> ;
    fn settings(&self) -> &Self::Cnf;
}
Expand description

Implements the base interface for creating compatible platform applications

Required Associated Types§

Required Methods§

Implementors§