Skip to content

Commit 3256aa8

Browse files
committed
fix(reader)!: Make Options opaque
1 parent 776dbe9 commit 3256aa8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/reader.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ pub struct Options {
1414
/// `None`: `read_until` is blocking forever. This is probably not what you want
1515
///
1616
/// `Some(millis)`: after millis milliseconds a timeout error is raised
17-
pub timeout_ms: Option<u64>,
17+
pub(crate) timeout_ms: Option<u64>,
1818
/// Whether to filter out escape codes, such as colors.
19-
pub strip_ansi_escape_codes: bool,
19+
pub(crate) strip_ansi_escape_codes: bool,
2020
}
2121

2222
impl Options {

0 commit comments

Comments
 (0)