Module headers

Source

Re-exports§

pub use header::Header;
pub use untyped::*;

Modules§

auth
header
typed
Module holding the TypedHeader trait and all typed headers. A typed header is basically any header that holds something more complex than an opque string (like Call-ID) or a number (like Expires). New typed headers will be added along the way for newer RFCs like PASSporT, SHAKEN, push notifications etc
untyped
Module holding the UntypedHeader trait and all the untyped headers. An untyped header is basically nothing more than a simple NewType around String with many many helpful goodies.

Structs§

Headers
Simple NewType around Vec<Header> that gives many helpful methods when dealing with headers in super::Request, super::Response and super::SipMessage.