aioduct 0.2.5

Async-native HTTP client built directly on hyper 1.x — no hyper-util, no legacy
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod ast;
mod parser;

#[cfg(test)]
mod tests;

pub(crate) use ast::{Dictionary, StructuredFieldType, StructuredFieldValue};
pub(crate) use parser::{
    dictionary, parse_dictionary_field, parse_field_value, serialize_dictionary,
};
#[cfg(test)]
pub(crate) use parser::{dictionary_member, field_value};

#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub(crate) enum StructuredFieldError {
    Parse,
}