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 3b17193 commit 2021865Copy full SHA for 2021865
crates/cargo-test-support/src/lib.rs
@@ -1470,17 +1470,6 @@ pub fn execs() -> Execs {
1470
}
1471
1472
1473
-pub trait Tap {
1474
- fn tap<F: FnOnce(&mut Self)>(self, callback: F) -> Self;
1475
-}
1476
-
1477
-impl<T> Tap for T {
1478
- fn tap<F: FnOnce(&mut Self)>(mut self, callback: F) -> T {
1479
- callback(&mut self);
1480
- self
1481
- }
1482
1483
1484
pub fn basic_manifest(name: &str, version: &str) -> String {
1485
format!(
1486
r#"
0 commit comments