Description
I'm wondering if there's a way to query the configuration kwargs passed to the Struct metaclass.
For example, how might I tell if a Struct was defined with class M(msgspec.Struct, frozen=True) (without trying to set an attribute and catching the exception)
Description
I'm wondering if there's a way to query the configuration kwargs passed to the Struct metaclass.
For example, how might I tell if a Struct was defined with
class M(msgspec.Struct, frozen=True)(without trying to set an attribute and catching the exception)