mirror of https://github.com/rwf2/Rocket.git
4c6562cd29
This allows responses to be sent to the client even when data is only partially read, significantly improving the experience for the client from one with a "connection closed" error to one with a proper response. The consequence is a lifetime in 'Data'. Though other non-lifetime-introducing solutions exist, the introduction of a lifetime to 'Data' is a longstanding desire as it prevents smuggling 'Data' into a longer-lived context. Use of 'Data' in that context was unspecified with various runtime consequences. The addition of a lifetime bound by the request prevents this error statically. In summary, the changes are: * Clients receive responses even when data isn't fully read. * 'Data' becomes 'Data<'r>'. 'FromData' changes accordingly. * Route 'Outcome's are strictly tied to the request lifetime. Tangentially, the invalid length form field validation error message has improved to format length in byte units if it exceeds 1024. |
||
---|---|---|
.. | ||
async-entry.rs | ||
async-entry.stderr | ||
bad-ignored-segments.rs | ||
bad-ignored-segments.stderr | ||
catch.rs | ||
catch.stderr | ||
catch_type_errors.rs | ||
catch_type_errors.stderr | ||
catchers.rs | ||
catchers.stderr | ||
from_form.rs | ||
from_form.stderr | ||
from_form_field.rs | ||
from_form_field.stderr | ||
from_form_type_errors.rs | ||
from_form_type_errors.stderr | ||
responder-types.rs | ||
responder-types.stderr | ||
responder.rs | ||
responder.stderr | ||
route-attribute-general-syntax.rs | ||
route-attribute-general-syntax.stderr | ||
route-path-bad-syntax.rs | ||
route-path-bad-syntax.stderr | ||
route-type-errors.rs | ||
route-type-errors.stderr | ||
route-warnings.rs | ||
route-warnings.stderr | ||
routes.rs | ||
routes.stderr | ||
typed-uri-bad-type.rs | ||
typed-uri-bad-type.stderr | ||
typed-uris-bad-params.rs | ||
typed-uris-bad-params.stderr | ||
typed-uris-invalid-syntax.rs | ||
typed-uris-invalid-syntax.stderr | ||
uri_display.rs | ||
uri_display.stderr | ||
uri_display_type_errors.rs | ||
uri_display_type_errors.stderr |