Std.Http.Server.stop
fn
stop: &Std.Http.Server.Running -> Result[(), Std.Http.Server.ServerError]This is a callable function.
What it does
Ask a server to stop.
Closing the listener is what ends the accept loop, because accepting does
not answer until a connection arrives and a flag alone would not be read
until one did. The flag is what tells the loop the failure was asked for
rather than a fault.
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.
- Names inside [ ] are type arguments, such as the item type held by a collection.
- Result makes success and recoverable failure part of the function's type.
