testing, debugging, making things private

This commit is contained in:
Oliver Gould
2017-07-22 18:30:32 +00:00
parent ab4f85ea2f
commit d5d47b08ca
6 changed files with 20 additions and 31 deletions

View File

@@ -112,15 +112,6 @@ impl<T> Frame<T> {
&Reset(_) => true,
}
}
pub fn is_reset(&self) -> bool {
use self::Frame::*;
match self {
&Reset(_) => true,
_ => false,
}
}
}
/// Errors that can occur during parsing an HTTP/2 frame.