A handler's return value: page Props, a redirect, or a custom axum response. Most handlers return a #[Props] struct and never build this directly.
Signature
rust
pub enum Response { Redirect(String), Props(Props), // TODO: improve this tuple to support a more generic IntoResponse Custom((StatusCode, HeaderMap, String)),}