Expand description
Macros for determining if a type is Send
and/or Sync
. The macro outputs a const expression.
Macrosยง
- is_send
- Returns a const
true
if the type isSend
. - is_
send_ sync - Equivalent to
(is_send!(ty), is_sync!(ty))
. - is_sync
- Returns a const
true
if the type isSync
.