Skip to main content

Clonable

Trait Clonable 

Source
pub trait Clonable {
    // Required method
    fn clone_box(&self) -> Box<dyn Sortable>;
}

Required Methods§

Source

fn clone_box(&self) -> Box<dyn Sortable>

Implementors§

Source§

impl<T: Clone + Sortable + 'static> Clonable for T