hyperlane-macros 17.0.8

A comprehensive collection of procedural macros for building HTTP servers with enhanced functionality. This crate provides attribute macros that simplify HTTP request handling, protocol validation, response management, and request data extraction.
Documentation
1
2
3
4
5
6
7
8
9
10
use crate::*;

/// Host data container storing host value expressions.
///
/// Used for host matching in request processing.
/// Supports both single and multiple host values.
pub(crate) struct MultiHostData {
    /// Vector of host value expressions to match against.
    pub(crate) host_values: Vec<Expr>,
}