struct Counter { private(set) var value = 0 mutating func increment() { value += 1 } } let requestCount = Counter() requestCount.increment()