pub trait CloneInto<T: Clone> {
// Required method
fn clone_into(&self) -> T;
}Expand description
克隆转换特征
Required Methods§
Sourcefn clone_into(&self) -> T
fn clone_into(&self) -> T
克隆并转换为目标类型
pub trait CloneInto<T: Clone> {
// Required method
fn clone_into(&self) -> T;
}克隆转换特征
克隆并转换为目标类型