class Backports::Data
def initialize_copy(other)
Why is `initialize_copy` specialized in MRI and not just `initialize_dup`?
def initialize_copy(other) @__members__ = other.to_h freeze end
def initialize_copy(other) @__members__ = other.to_h freeze end