I don't think you can have a static element in a struct. It would defeat the purpose of being able to memset and memcpy the entire struct which is assumed to be contiguous bytes.
If you wanted to have a static shared component of part of the structs data, you could put the common data in a struct and then have an element of all of the other structs which is a pointer to that data.