Returns the key part of the parameter
(&'a self)
| 347 | |
| 348 | /// Returns the key part of the parameter |
| 349 | pub fn key(&'a self) -> ParameterKey<'a> { |
| 350 | ParameterKey::from_bytes(self.0.key()) |
| 351 | } |
| 352 | |
| 353 | /// Returns the optional value part of the parameter |
| 354 | pub fn value(&'a self) -> Option<&'a str> { |
no outgoing calls