Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Reqwest 建立在 Hyper 之上,其中包含一个header!用于创建自定义标头的宏。header!有没有一种方法可以在不明确将 Hyper 作为单独的 crate 包含的情况下访问宏?
header!
#[macro_use] extern crate reqwest; header! { (XRequestGuid, "X-Request-Guid") => [String] }
header!在此范围内找不到宏
不,您必须直接导入宏才能使用它。这与函数、类型和特征的行为相同。
也可以看看: