summaryrefslogtreecommitdiff
path: root/src/proto.rs
diff options
context:
space:
mode:
authorCorey Richardson <corey@octayn.net>2017-09-24 08:34:58 -0400
committerGraham Northup <grahamnorthup@yahoo.com>2017-09-24 19:01:22 -0400
commit959fed1d8435070e39bd7b87c1e908f79b65add9 (patch)
tree971920997b0ecb58a141ed1d30546cb58975e9ff /src/proto.rs
parent7eef21b3b90898f4ef05fa4220fde608cf55c6ab (diff)
Fix compiler warnings
Some minor stuff, mostly. The features have been stable since 1.20
Diffstat (limited to 'src/proto.rs')
-rw-r--r--src/proto.rs4
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,