macro_rules! field_path {
($field:ident) => { ... };
($field:ident . $($rest:ident).+) => { ... };
}Expand description
Helper macro for creating field path patterns in filter_field_set!
This handles the conversion of dot notation to nested field access.