pub type AsyncOutputArgWriter = Either<Stdout, File>;Available on crate feature
tokio only.Expand description
The type of the asynchronous writers returned by
OutputArg::async_create().
This type implements tokio::io::AsyncWrite.
Aliased Type§
pub enum AsyncOutputArgWriter {
Left(Stdout),
Right(File),
}