diff options
author | Corey Richardson <corey@octayn.net> | 2017-09-24 09:18:26 -0400 |
---|---|---|
committer | Graham Northup <grahamnorthup@yahoo.com> | 2017-09-24 19:01:22 -0400 |
commit | 150d71cae770598ade7e09419150f1218e961128 (patch) | |
tree | a1b0848642fa59f746d9e4587e585a22df0188e2 /src/synth/rel.rs | |
parent | 5f1e73ab5bd0709dd408064c06f2717182777537 (diff) |
Fix more style things
All reported by clippy. Mostly stuff like unnecessary lifetimes
or references.
Diffstat (limited to 'src/synth/rel.rs')
-rw-r--r-- | src/synth/rel.rs | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/synth/rel.rs b/src/synth/rel.rs index bb3cf1f..e3c4216 100644 --- a/src/synth/rel.rs +++ b/src/synth/rel.rs @@ -105,7 +105,7 @@ impl Generator for Rel { &self.buf } - fn buffer<'a>(&'a self) -> &'a SampleBuffer { &self.buf } + fn buffer(&self) -> &SampleBuffer { &self.buf } fn set_buffer(&mut self, buf: SampleBuffer) -> SampleBuffer { mem::replace(&mut self.buf, buf) } @@ -115,18 +115,18 @@ pub struct RelFactory; impl GeneratorFactory for RelFactory { fn new(&self, params: &mut FactoryParameters) -> Result<GenBox, GenFactoryError> { - let op = match params.get_req_param("rel", 1)? { + let op = match *params.get_req_param("rel", 1)? { /* TODO - &ParamValue::Integer(v) => v.into(), - &ParamValue::Float(v) => (v as isize).into(), + ParamValue::Integer(v) => v.into(), + ParamValue::Float(v) => (v as isize).into(), */ - &ParamValue::Integer(_) => return Err(GenFactoryError::BadType(ParamKind::Integer)), - &ParamValue::Float(_) => return Err(GenFactoryError::BadType(ParamKind::Float)), - &ParamValue::String(ref v) => (&*v as &str).into(), - &ParamValue::Generator(_) => return Err(GenFactoryError::BadType(ParamKind::Generator)), + ParamValue::Integer(_) => return Err(GenFactoryError::BadType(ParamKind::Integer)), + ParamValue::Float(_) => return Err(GenFactoryError::BadType(ParamKind::Float)), + ParamValue::String(ref v) => (&*v as &str).into(), + ParamValue::Generator(_) => return Err(GenFactoryError::BadType(ParamKind::Generator)), }; - let left = params.remove_param("left", 0)?.as_gen()?; - let right = params.remove_param("right", 2)?.as_gen()?; + let left = params.remove_param("left", 0)?.into_gen()?; + let right = params.remove_param("right", 2)?.into_gen()?; let buf = SampleBuffer::new(cmp::max(left.buffer().len(), right.buffer().len())); Ok(Box::new(Rel { left: left, |