rust/src/libcore/clone.rs
2012-11-27 11:08:19 -08:00

11 lines
157 B
Rust

/**
Clonable types are copied with the clone method
*/
pub trait Clone {
fn clone(&self) -> self;
}
impl (): Clone {
fn clone(&self) -> () { () }
}