Module std::marker
[−]
[src]
Primitive traits and marker types representing basic 'kinds' of types.
Rust types can be classified in various useful ways according to intrinsic properties of the type. These classifications, often called 'kinds', are represented as traits.
Structs
PhantomData |
|
Traits
Copy |
Types that can be copied by simply copying bits (i.e. |
Send |
Types that can be transferred across thread boundaries. |
Sized |
Types with a constant size known at compile-time. |
Sync |
Types that can be safely shared between threads when aliased. |
Reflect |
[Unstable] Types that can be reflected over. |
Unsize |
[Unstable] Types that can be "unsized" to a dynamically sized type. |