We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47ea0cf commit a70635bCopy full SHA for a70635b
src/libcore/marker.rs
@@ -13,15 +13,6 @@
13
//! Rust types can be classified in various useful ways according to
14
//! intrinsic properties of the type. These classifications, often called
15
//! 'kinds', are represented as traits.
16
-//!
17
-//! They cannot be implemented by user code, but are instead implemented
18
-//! by the compiler automatically for the types to which they apply.
19
20
-//! Marker types are special types that are used with unsafe code to
21
-//! inform the compiler of special constraints. Marker types should
22
-//! only be needed when you are creating an abstraction that is
23
-//! implemented using unsafe code. In that case, you may want to embed
24
-//! some of the marker types below into your type.
25
26
#![stable(feature = "rust1", since = "1.0.0")]
27
0 commit comments