The pipe operator in Rust
This crate is exactly what you expect it to be, the pipe operator in Rust. It's very simple, but effective nonetheless.
Usage
pipe!;
Partial invocation of pipes
You can partially invoke pipes, the @ token will be replaced by the value
currently going through the pipeline. The @ token can be in any position,
not just at the start or end.
pipe!; // will output "HELLO" to stdout
Invoking methods on the item in the pipeline
You can invoke methods on the item in the pipeline at any time by prefixing
the method identifier by a .
// This is functionally the same as the "Partial invocation" example.
pipe!;