Closed
Description
Traits
<tr>
<td>Send</td>
<td class='docblock short'><p>Types able to be transferred across task boundaries.</p>
<tr>
<td>Sized</td>
<td class='docblock short'><p>Types with a constant size known at compile-time.</p>
<tr>
<td>Sync</td>
<td class='docblock short'><p>Types that can be safely shared between tasks when aliased.</p>
<tr>
<td>Sync</td>
<td class='docblock short'><p>Types that can be safely shared between tasks when aliased.</p>
Copy | Types that can be copied by simply copying bits (i.e. |
I suspect if the below line has anything to do with this issue:
pub use self::Sync as Share;
Cf. eg. std::ascii
which re-exports self::AsciiExt
.