We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7d109d commit eb7670bCopy full SHA for eb7670b
src/assert.rs
@@ -345,15 +345,15 @@ impl IntoPathPredicate<StrContentPathPredicate> for String {
345
}
346
347
348
-impl<'s> IntoPathPredicate<StrContentPathPredicate> for &'s str {
+impl IntoPathPredicate<StrContentPathPredicate> for &str {
349
type Predicate = StrContentPathPredicate;
350
351
fn into_path(self) -> Self::Predicate {
352
Self::Predicate::new(self.to_owned())
353
354
355
356
-impl<'s> IntoPathPredicate<StrContentPathPredicate> for &'s String {
+impl IntoPathPredicate<StrContentPathPredicate> for &String {
357
358
359
0 commit comments