| 393 | /// Handles quoted values and treats dashes and underscores in keys as equivalent. |
| 394 | #[derive(Clone, Debug)] |
| 395 | pub struct ParameterKey<'a>(pub(crate) &'a [u8]); |
| 396 | |
| 397 | impl Deref for ParameterKey<'_> { |
| 398 | type Target = [u8]; |
no outgoing calls
no test coverage detected