UnsafeSendable
A type whose values can safely be passed across concurrency domains by copying, but which disables some safety checking at the conformance site.
Declaration
protocol UnsafeSendable : SendableOverview
Use an unchecked conformance to Sendable instead — for example:
struct MyStructure: @unchecked Sendable { ... }