From 150d71cae770598ade7e09419150f1218e961128 Mon Sep 17 00:00:00 2001 From: Corey Richardson Date: Sun, 24 Sep 2017 09:18:26 -0400 Subject: Fix more style things All reported by clippy. Mostly stuff like unnecessary lifetimes or references. --- src/synth/mod.rs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/synth/mod.rs') diff --git a/src/synth/mod.rs b/src/synth/mod.rs index fb9714b..e8d1758 100644 --- a/src/synth/mod.rs +++ b/src/synth/mod.rs @@ -63,7 +63,7 @@ impl SampleBuffer { self.samples.len() } - pub fn iter_mut<'a>(&'a mut self) -> slice::IterMut<'a, f32> { + pub fn iter_mut(&mut self) -> slice::IterMut { self.samples.iter_mut() } @@ -160,7 +160,7 @@ impl IndexMut for SampleBuffer { pub trait Generator : Debug { fn eval<'a>(&'a mut self, params: &Parameters) -> &'a SampleBuffer; - fn buffer<'a>(&'a self) -> &'a SampleBuffer; + fn buffer(&self) -> &SampleBuffer; fn set_buffer(&mut self, buf: SampleBuffer) -> SampleBuffer; } @@ -186,10 +186,10 @@ impl GenFactoryErrorType { desc: "".to_string(), }; - ret.desc = match &ret.kind { - &GenFactoryError::MissingRequiredParam(ref name, pos) => format!("Needed a parameter named {} or at pos {}", name, pos), - &GenFactoryError::CannotConvert(from, to) => format!("Cannot convert {:?} to {:?}", from, to), - &GenFactoryError::BadType(ty) => format!("Bad parameter type {:?}", ty), + ret.desc = match ret.kind { + GenFactoryError::MissingRequiredParam(ref name, pos) => format!("Needed a parameter named {} or at pos {}", name, pos), + GenFactoryError::CannotConvert(from, to) => format!("Cannot convert {:?} to {:?}", from, to), + GenFactoryError::BadType(ty) => format!("Bad parameter type {:?}", ty), }; ret @@ -210,7 +210,7 @@ impl From for GenFactoryErrorType { } impl Error for GenFactoryErrorType { - fn description<'a>(&'a self) -> &'a str { + fn description(&self) -> &str { &self.desc } } @@ -279,7 +279,7 @@ impl ParamValue { } } - pub fn as_gen(self) -> Result { + pub fn into_gen(self) -> Result { match self { ParamValue::Integer(v) => Ok(Box::new(self::param::Param { name : "_".to_string(), default: v as f32, buf: SampleBuffer::new(1) })), ParamValue::Float(v) => Ok(Box::new(self::param::Param { name : "_".to_string(), default: v, buf: SampleBuffer::new(1) })), -- cgit v1.2.3-70-g09d2