use sauron::prelude::*; struct App { count: i32, } impl App { fn new() -> Self { App { count: 0 } } }