6 个版本
0.2.0 | 2024年4月23日 |
---|---|
0.1.4 | 2024年4月11日 |
#1472 in 解析器实现
用于 rede
33KB
799 行
Rede 解析器
库crate,用于接收 Rede 文件的内容并生成用于命令行二进制的请求或环境。它可以独立使用,以在其他项目或实现中实现 Rede 格式。
用法
该库提供了 rede_parser::parse_request
函数,用于将给定的字符串转换为有效的 rede_parser::Request
。
let toml = r#"
[http]
method = "POST"
url = "https://127.0.0.1:8080/note"
[headers]
Content-Type = "application/json"
[body]
raw = """
{
"title": "Implement rede_parser" ,
"description": "Implement it following the example
}
"""
"#;
let request = rede_parser::parse_request(toml)?;
assert_eq!(request.method, Method::POST);
assert_eq!(request.url, "https://127.0.0.1:8080/note");
assert_eq!(request.headers["Content-Type"], "application/json");
if let Body::Raw { content, mime } = &request.body {
assert_eq!(mime, &"text/plain; charset=utf-8");
println!("{}", &request.body);
}
lib.rs
:
处理 crate rede
中使用的 TOML 格式请求解析的库。
该库提供了 rede_parser::parse_request
函数,用于将给定的字符串转换为有效的 rede_parser::Request
。
示例
将正确的请求 TOML 传递给解析函数以获取解析后的请求
let toml = r#"
[http]
method = "POST"
url = "https://127.0.0.1:8080/note"
[headers]
Content-Type = "application/json"
[body]
raw = """
{
"title": "Implement rede_parser" ,
"description": "Implement it following the example
}
"""
"#;
let request = rede_parser::parse_request(toml)?;
assert_eq!(request.method, Method::POST);
assert_eq!(request.url, "https://127.0.0.1:8080/note");
assert_eq!(request.headers["Content-Type"], "application/json");
if let Body::Raw { content, mime } = &request.body {
assert_eq!(mime, &"text/plain; charset=utf-8");
println!("{}", &request.body);
}
# Ok(())
依赖项
~1.2–1.8MB
~38K SLoC