11 lines
157 B
Rust
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) -> () { () }
|
|
}
|