Attributes for
Attributes defined on the original struct would be passed down to all unit structs and ones defined on the fields passed down to the unit struct corresponding to that field.
#[dynaccess(module = "dog_fields", field_attrs(derive(Clone)))]
#[derive(Dynaccess)]
struct Dog {
#[dynaccess(attrs(derive(Debug)))]
pub name: String
}