(key: impl Into<String>, path: impl Into<String>)
| 86 | } |
| 87 | |
| 88 | pub fn file(key: impl Into<String>, path: impl Into<String>) -> Self { |
| 89 | Self { |
| 90 | key: key.into(), |
| 91 | value: String::new(), |
| 92 | file_path: Some(path.into()), |
| 93 | } |
| 94 | } |
| 95 | |
| 96 | pub fn is_file(&self) -> bool { |
| 97 | self.file_path.is_some() |
nothing calls this directly
no outgoing calls
no test coverage detected