pub trait Clone { fn clone(&self) -> Self; fn clone_from(&mut self, source: &Self) { ... } } ... A common trait for the ability to explicitly duplicate an object.
確定! 回上一頁