QoL: Pipe/map functionality built into library
Complex queries can be ugly and difficult to read when written as a string or using the builder API. A simple way to improve the readability and also make writing them easier, is to use piping.
A pipe method (similar to the one found in the Tap crate) can be made available on all types that are Operable
, making chaining functions a breeze.