macro_rules! pluck {
(&mut $($expr:tt)+) => { ... };
(&$($expr:tt)+) => { ... };
($($expr:tt)+) => { ... };
}Expand description
Create a lambda that extracts the provided property from the argument.
See crate level documentation for detailed usage.