Contents

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 : Sendable

Overview

Use an unchecked conformance to Sendable instead — for example:

struct MyStructure: @unchecked Sendable { ... }

See Also

Actors