rust/src/libcore/kinds.rs

22 lines
220 B
Rust
Raw Normal View History

//! The kind traits
#[lang="const"]
pub trait Const {
// Empty.
}
#[lang="copy"]
pub trait Copy {
// Empty.
}
#[lang="send"]
pub trait Send {
// Empty.
}
#[lang="owned"]
pub trait Owned {
// Empty.
}