Skip to content

Commit

Permalink
docs(headers): no_inline doc on HeaderMap (hyperium#2525)
Browse files Browse the repository at this point in the history
  • Loading branch information
mohsen-alizadeh committed May 3, 2021
1 parent 4e9a006 commit d1d2f32
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,10 @@ extern crate tracing;
#[cfg(all(test, feature = "nightly"))]
extern crate test;

pub use http::{header, HeaderMap, Method, Request, Response, StatusCode, Uri, Version};
pub use crate::http::{header, Method, Request, Response, StatusCode, Uri, Version};

#[doc(no_inline)]
pub use crate::http::HeaderMap;

pub use crate::body::Body;
pub use crate::error::{Error, Result};
Expand Down

0 comments on commit d1d2f32

Please sign in to comment.