rust/src/libcore/clone.rs

11 lines
157 B
Rust
Raw Normal View History

2012-11-26 18:12:47 -06:00
/**
Clonable types are copied with the clone method
*/
pub trait Clone {
fn clone(&self) -> self;
}
impl (): Clone {
fn clone(&self) -> () { () }
}