AnyCloneableIterableVec

Trait AnyCloneableIterableVec 

Source
pub trait AnyCloneableIterableVec<I, T>: AnyIterableVec<I, T> {
    // Required method
    fn boxed_clone(&self) -> Box<dyn AnyCloneableIterableVec<I, T>>;
}

Required Methods§

Trait Implementations§

Source§

impl<I, T> Clone for Box<dyn AnyCloneableIterableVec<I, T>>

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Implementors§

Source§

impl<I, T, U> AnyCloneableIterableVec<I, T> for U
where U: 'static + AnyIterableVec<I, T> + Clone,