Registry / serialization / serde-html-form

serde-html-form

JSON →
library0.4.0rscratesunverified

Provides (de-)serialization support for the application/x-www-form-urlencoded format using Serde.

# Cargo.toml [dependencies] serde_html_form = "0.4.0"
INSTALL
IMPORT
SIG · SERDE-HTML-FORM
S
serde-html-form
serializationrustv0.4.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

from_bytes
use serde_html_form::from_bytes;

Deserializes a URL-encoded form string into a Rust struct.

use serde_html_form::from_bytes; #[derive(serde::Deserialize)] struct FormData { name: String, age: u8, } let data = b"name=Alice&age=30"; let form: FormData = from_bytes(data).unwrap(); println!("{:?}", form);
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.4.0latest on crates.io
Audit
Dependencies

No dependency data recorded yet.

Agent activity
3 hits · last 30 days
node
2
Resources
serde-html-form — cargo add serde-html-form · libregistry