Crate is_send_sync

Source
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 is Send.
is_send_sync
Equivalent to (is_send!(ty), is_sync!(ty)).
is_sync
Returns a const true if the type is Sync.