mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
16 lines
629 B
Text
16 lines
629 B
Text
error: manual implementation of `Instant::elapsed`
|
|
--> $DIR/manual_instant_elapsed.rs:17:20
|
|
|
|
|
LL | let duration = Instant::now() - prev_instant;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `prev_instant.elapsed()`
|
|
|
|
|
= note: `-D clippy::manual-instant-elapsed` implied by `-D warnings`
|
|
|
|
error: manual implementation of `Instant::elapsed`
|
|
--> $DIR/manual_instant_elapsed.rs:26:5
|
|
|
|
|
LL | Instant::now() - *ref_to_instant; // to ensure parens are added correctly
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `(*ref_to_instant).elapsed()`
|
|
|
|
error: aborting due to 2 previous errors
|
|
|