We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15f66a6 commit ac1f13fCopy full SHA for ac1f13f
src/parsers/mod.rs
@@ -1,6 +1,6 @@
1
//! Parsers, including the main parser and the parsers for the basic types
2
//! (integer and string).
3
-//!
+//!
4
//! ``BencodeParser`` is the main parser. It is generic over the type of the
5
//! input buffer.
6
pub mod error;
src/parsers/stack.rs
@@ -8,7 +8,7 @@ use std::fmt::Display;
8
///
9
/// > NOTICE!: It's not allowed to pop or change the initial state.
10
#[derive(Debug)]
11
-pub struct Stack {
+pub(crate) struct Stack {
12
/// The stack of states.
13
states: Vec<State>,
14
}
0 commit comments