This option controls whether struct members that do not mutate instance state should be marked readonly.
struct Point { public readonly int x; }
struct Point { public int x; }