refactor: Optimize code based on cargo clippy suggestions

Signed-off-by: one230six <723682061@qq.com>

refactor: Optimize code based on cargo clippy suggestions

Signed-off-by: one230six <723682061@qq.com>
This commit is contained in:
one230six 2024-03-13 15:18:12 +08:00 committed by David Peter
parent 865b496098
commit c0921351e7
3 changed files with 11 additions and 11 deletions

View File

@ -59,11 +59,11 @@ impl<'a> Command<'a> {
}
pub fn get_name_with_unused_parameters(&self) -> String {
let parameters =
self.get_unused_parameters()
.fold(String::new(), |output, (parameter, value)| {
output + &format!("{} = {}, ", parameter, value.to_string())
});
let parameters = self
.get_unused_parameters()
.fold(String::new(), |output, (parameter, value)| {
output + &format!("{} = {}, ", parameter, value)
});
let parameters = parameters.trim_end_matches(", ");
let parameters = if parameters.is_empty() {
"".into()

View File

@ -1,4 +1,5 @@
use crate::util::number::Number;
use std::fmt::Display;
pub mod range_step;
pub mod tokenize;
@ -9,12 +10,13 @@ pub enum ParameterValue {
Numeric(Number),
}
impl ToString for ParameterValue {
fn to_string(&self) -> String {
match self {
impl Display for ParameterValue {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
let str = match self {
ParameterValue::Text(ref value) => value.clone(),
ParameterValue::Numeric(value) => value.to_string(),
}
};
write!(f, "{}", str)
}
}

View File

@ -1,5 +1,3 @@
use std::iter::Iterator;
/// A max function for f64's without NaNs
pub fn max(vals: &[f64]) -> f64 {
*vals