class Backports::Data

def initialize_copy(other)

Let's follow the pattern anyways
Why is `initialize_copy` specialized in MRI and not just `initialize_dup`?
def initialize_copy(other)
  @__members__ = other.to_h
  freeze
end