ssip_client_async/
net.rs

1// ssip-client -- Speech Dispatcher client in Rust
2// Copyright (c) 2022 Laurent Pelecq
3//
4// Licensed under the Apache License, Version 2.0
5// <LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0> or the MIT
6// license <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
7// option. All files in the project carrying such notice may not be copied,
8// modified, or distributed except according to those terms.
9
10pub(crate) enum StreamMode {
11    Blocking,
12    NonBlocking,
13    TimeOut(std::time::Duration),
14}
15
16#[cfg(test)]
17mod tests {}