import Foundation struct UncheckedSendable: @unchecked Sendable { let value: T init(_ value: T) { self.value = value } }