When one makes a struct like
mutable struct Status
@atomic st::Symbol
# other fields
end
Is there a way to tell that st is a special field? Since fieldtypes gives no additional information.
julia> fieldtypes(Status)
(Symbol,)
Should there be an isatomic function?