We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Options
1 parent 776dbe9 commit 3256aa8Copy full SHA for 3256aa8
1 file changed
src/reader.rs
@@ -14,9 +14,9 @@ pub struct Options {
14
/// `None`: `read_until` is blocking forever. This is probably not what you want
15
///
16
/// `Some(millis)`: after millis milliseconds a timeout error is raised
17
- pub timeout_ms: Option<u64>,
+ pub(crate) timeout_ms: Option<u64>,
18
/// Whether to filter out escape codes, such as colors.
19
- pub strip_ansi_escape_codes: bool,
+ pub(crate) strip_ansi_escape_codes: bool,
20
}
21
22
impl Options {
0 commit comments