apply clippy advices on executor/commands lifetimes.

This commit is contained in:
David Carlier 2024-11-10 22:49:49 +00:00 committed by David Peter
parent 74615f01fb
commit 2899deb8fd
2 changed files with 3 additions and 3 deletions

View File

@ -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<'_>,

View File

@ -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())
}