From 959fed1d8435070e39bd7b87c1e908f79b65add9 Mon Sep 17 00:00:00 2001 From: Corey Richardson Date: Sun, 24 Sep 2017 08:34:58 -0400 Subject: Fix compiler warnings Some minor stuff, mostly. The features have been stable since 1.20 --- src/proto.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/proto.rs') diff --git a/src/proto.rs b/src/proto.rs index 1af1c72..3ec0aeb 100644 --- a/src/proto.rs +++ b/src/proto.rs @@ -19,14 +19,14 @@ pub enum Command { impl Command { const SIZE: usize = 36; - fn duration(&self) -> Option { + pub fn duration(&self) -> Option { match *self { Command::Play{sec, usec, ..} => Some(Duration::new(sec as u64, usec * 1000)), _ => None, } } - fn pitch(&self) -> Option { + pub fn pitch(&self) -> Option { match *self { Command::Play{freq, ..} => Some(Pitch::Freq(freq as f32)), _ => None, -- cgit v1.2.3-70-g09d2