consume_output/
lib.rs

1/// Deletes the output of a function
2pub trait Consume {
3    fn consume(&self) {
4        return;
5    }
6}
7
8impl<T> Consume for T {}