[go: up one dir, main page]

Module actix

Source
Expand description

Actix-web integration for serde_qs.

This module provides extractors for deserializing querystrings and form data with support for nested structures in Actix-web applications.

§Features

  • actix4: Support for actix-web 4.x
  • actix3: Support for actix-web 3.x

§Why use this over actix-web’s built-in extractors?

Actix-web’s web::Query and web::Form only support flat structures. These extractors support nested objects and arrays using bracket notation.

Structs§

QsForm
Extract typed information from the request’s form data.
QsQuery
Extract typed information from the request’s query string.
QsQueryConfig
Configuration for query and form extractors.