select_all

Macro select_all 

Source
macro_rules! select_all {
    ($data:expr, $field:expr) => { ... };
}
Expand description

Select and collect in one line.

§Example

let names = select_all!(products, Product::name());