Redirect and/or gag stdout/stderr.
Documentation (with examples): https://docs.rs/gag/
std::io::set_print
(currently
unstable). Unfortunately, this function doesn't actually redirect the stdio
file descriptor, it just replaces the std::io::stdout
writer.std::io::set_print
to
redirect stdout. You can get around this though by using the --nocapture
argument
when running your tests.impl<F> Redirect<F> where F: BorrowMut<T>, T: AsMut<AsRawFd>
so I can write
file.borrow_mut().as_mut()
but that would be ambiguous...