ProtocolSwift5.9.0

    UnsafeSendable

    A type whose values can safely be passed across concurrency domains by copying, but which disables some safety checking at the conformance site.

    This declaration is deprecated: Use @unchecked Sendable instead

    protocol UnsafeSendable : Sendable

    Use an unchecked conformance to Sendable instead — for example:

    struct MyStructure: @unchecked Sendable { ... }

    Supertypes

    • protocol Sendable

      A type whose values can safely be passed across concurrency domains by copying.