| 52 | /// A single header key-value pair |
| 53 | #[derive(Debug, Clone, Serialize, Deserialize)] |
| 54 | pub struct Header { |
| 55 | pub key: String, |
| 56 | pub value: String, |
| 57 | pub enabled: bool, |
| 58 | } |
| 59 | |
| 60 | impl Header { |
| 61 | pub fn new(key: impl Into<String>, value: impl Into<String>) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected