A struct property is declared with `private(set)`. From outside the struct's file, what is allowed?struct Counter { private(set) var value = 0 mutating func bump() { value += 1 } }