macro_rules! field_ptr {
    ($base_ptr:ident.$field:ident) => { ... };
}
Expand description

Returns a pointer to a field of a base pointer.

The syntax is field_ptr(base_ptr.field) where both base_ptr and field are idents.