pub unsafe auto trait Crossing { }
Expand description
An auto trait that limits the types that can be send across to another compartment. These are:
- Types other than references, UnsafeCell, raw pointers, slices.
- #[repr(C)] structs and enums made from Crossing types.
Safety
The type must meet the above requirements.