mirror of
https://github.com/sharkdp/hyperfine.git
synced 2024-11-22 03:17:24 +03:00
apply clippy advices on executor/commands lifetimes.
This commit is contained in:
parent
74615f01fb
commit
2899deb8fd
@ -110,7 +110,7 @@ impl<'a> RawExecutor<'a> {
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a> Executor for RawExecutor<'a> {
|
||||
impl Executor for RawExecutor<'_> {
|
||||
fn run_command_and_measure(
|
||||
&self,
|
||||
command: &Command<'_>,
|
||||
@ -161,7 +161,7 @@ impl<'a> ShellExecutor<'a> {
|
||||
}
|
||||
}
|
||||
|
||||
impl<'a> Executor for ShellExecutor<'a> {
|
||||
impl Executor for ShellExecutor<'_> {
|
||||
fn run_command_and_measure(
|
||||
&self,
|
||||
command: &Command<'_>,
|
||||
|
@ -383,7 +383,7 @@ fn test_get_parameterized_command_name() {
|
||||
assert_eq!(cmd.get_name(), "name-quux-baz");
|
||||
}
|
||||
|
||||
impl<'a> fmt::Display for Command<'a> {
|
||||
impl fmt::Display for Command<'_> {
|
||||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
||||
write!(f, "{}", self.get_command_line())
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user