diff options
Diffstat (limited to 'src/proto.rs')
-rw-r--r-- | src/proto.rs | 4 |
1 files changed, 2 insertions, 2 deletions
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<Duration> { + pub fn duration(&self) -> Option<Duration> { match *self { Command::Play{sec, usec, ..} => Some(Duration::new(sec as u64, usec * 1000)), _ => None, } } - fn pitch(&self) -> Option<Pitch> { + pub fn pitch(&self) -> Option<Pitch> { match *self { Command::Play{freq, ..} => Some(Pitch::Freq(freq as f32)), _ => None, |