(string: &'a str)
| 66 | |
| 67 | impl<'a> From<&'a str> for LocalJarArtifact { |
| 68 | fn from(string: &'a str) -> LocalJarArtifact { |
| 69 | LocalJarArtifact::new(string) |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | impl From<String> for LocalJarArtifact { |
nothing calls this directly
no test coverage detected