macro_rules! field_accessor {
    ($self: ident, () with $($rest: tt)*) => { ... };
    ($self: ident, $lit: literal with $($rest: tt)*) => { ... };
    ($self: ident, { $expr: expr } with $($rest: tt)*) => { ... };
    ($self: ident, $($ident: tt $(($($call: tt),*))?).+ with $($rest: tt)*) => { ... };
}
Expand description

Implements field accessor based on input using supplied self.