Add Destruct and Drop traits to static.rs
This commit is contained in:
parent
6faa6a28ba
commit
edf33fe0a2
1 changed files with 6 additions and 0 deletions
|
@ -22,6 +22,12 @@
|
|||
#[lang = "sized"]
|
||||
pub trait Sized {}
|
||||
|
||||
#[lang = "destruct"]
|
||||
pub trait Destruct {}
|
||||
|
||||
#[lang = "drop"]
|
||||
pub trait Drop {}
|
||||
|
||||
#[lang = "copy"]
|
||||
trait Copy {
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue