pub fn run<L: Layout>(layout: L) -> Result<(), Error<L::Error>>
4fn main() { 5 let layout = MyLayout {}; 6 run(layout).unwrap(); 7}