struct UnsafeTransfer<Wrapped>
UnsafeTransfer
can be used to make non-Sendable
values Sendable
. As the name implies, the usage of this is unsafe because it disables the sendable checking of the compiler. It can be used similar to @unsafe Sendable
but for values instead of types.