| Crates.io | content_disposition |
| lib.rs | content_disposition |
| version | 0.4.0 |
| created_at | 2024-08-16 06:45:33.682944+00 |
| updated_at | 2024-08-16 07:53:38.755883+00 |
| description | Content-Disposition parser |
| homepage | https://github.com/y0zong/content-disposition/blob/master/README.md |
| repository | https://github.com/y0zong/content-disposition |
| max_upload_size | |
| id | 1339998 |
| size | 14,582 |
See the rustdoc at docs.rs.
The primary entry point for this library is the following function:
fn parse_content_disposition(header: &str) -> ParsedContentDisposition
Example
let dis = parse_content_disposition(" form-data; name=\"cover\"; filename=\"exif.jpg\"");
assert_eq!(dis.disposition, DispositionType::FormData);
assert_eq!(dis.name(), Some("cover".to_string()));
assert_eq!(dis.filename(), Some("exif.jpg".to_string()));
Currently the minimum supported Rust version (MSRV) is 1.51.0. MSRV increases will be kept to a minimum, and will always be accompanied with a minor version bump.