(&self)
| 577 | f.write_str(self.as_ref()) |
| 578 | } |
| 579 | } |
| 580 | |
| 581 | impl From<&'static str> for SceneValueKey { |
| 582 | fn from(value: &'static str) -> Self { |
| 583 | Self(Cow::Borrowed(value)) |
| 584 | } |
| 585 | } |
| 586 | |
| 587 | impl From<String> for SceneValueKey { |
no outgoing calls
no test coverage detected