(name: impl Into<String>, path: impl Into<PathBuf>)
| 189 | path: PathBuf, |
| 190 | }, |
| 191 | } |
| 192 | |
| 193 | impl BuildSource { |
| 194 | pub fn inline(name: impl Into<String>, source: impl Into<String>) -> Self { |
| 195 | Self::Inline { |
| 196 | name: name.into(), |
| 197 | source: source.into(), |
| 198 | source_path: None, |
| 199 | } |
no outgoing calls
no test coverage detected