Trait suzy::platform::opengl::PopulateTextureDynClone[][src]

pub trait PopulateTextureDynClone {
    fn clone_boxed(&self) -> Box<dyn PopulateTexture>;
}

A trait which allows cloning a PopulateTexture trait object.

Required methods

fn clone_boxed(&self) -> Box<dyn PopulateTexture>[src]

Create a clone of this texture populator, as a boxed trait object.

Loading content...

Implementors

impl<T> PopulateTextureDynClone for T where
    T: 'static + PopulateTexture + Clone
[src]

Loading content...