hyperlane-macros 19.0.0

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::*;

/// Represents attributes for the Hyperlane macro.
///
/// Used to store parsed variable-type pairs from macro input.
/// Supports both single and multiple pairs.
pub(crate) struct MultiHyperlaneAttr {
    /// Vector of variable-type pairs.
    pub(crate) params: Vec<(Ident, Ident)>,
}