use crate::Writer;
#[cfg(all(not(feature = "blocking-io"), feature = "async-io"))]
pub(crate) mod async_io;
#[cfg(feature = "blocking-io")]
pub(crate) mod blocking_io;
impl<T> Writer<T> {
pub fn text_mode(mut self) -> Self {
self.enable_text_mode();
self
}
pub fn binary_mode(mut self) -> Self {
self.enable_binary_mode();
self
}
}