Std.App.start
fn
start: &Std.App.App -> Std.App.ReportThis is a callable function.
What it does
Start every stage in order.
A stage that fails stops every stage already started, in reverse, before
answering. A caller told that a start failed will not then be told to clean
up after it, so the cleanup happens here or it does not happen.
Read the signature
- The text after the name is the type checked by Pudu.
- Read arrows from left to right: inputs come first, and the final type is returned.
- & borrows a value for this call instead of moving or copying it.
